pxar
 All Classes Namespaces Functions Variables Typedefs Friends
PixTestBarePretest.hh
1 #ifndef PIXTESTBAREPRETEST_H
2 #define PIXTESTBAREPRETEST_H
3 
4 #include "PixTest.hh"
5 
6 class DLLEXPORT PixTestBarePretest: public PixTest {
7 public:
8  PixTestBarePretest(PixSetup *, std::string);
10  virtual ~PixTestBarePretest();
11  virtual bool setParameter(std::string parName, std::string sval);
12  void init();
13  void setToolTips();
14  void runCommand(std::string);
15  void bookHist(std::string);
16 
17  void doTest();
18  void setVana();
19  void programROC();
20  void setVthrCompCalDel();
21  void setVthrCompId();
22  void setCalDel();
23 
24 
25 private:
26 
27  int fTargetIa;
28  int fNoiseWidth;
29  int fNoiseMargin;
30  int fParNtrig;
31  int fParVcal, fParDeltaVthrComp;
32  bool fProblem;
33 
34  ClassDef(PixTestBarePretest, 1)
35 
36 };
37 #endif
virtual void runCommand(std::string command)
allow execution of any button in the test
Definition: PixTest.cc:129
virtual void doTest()
function connected to "DoTest" button of PixTab
Definition: PixTest.cc:602
void bookHist(std::string name)
use if you want, or define the histograms in the specific member functions
Definition: PixTest.cc:93
virtual void setToolTips()
implement this to provide updated tool tips if the user changes test parameters
Definition: PixTest.cc:85
virtual bool setParameter(std::string parName, std::string sval)
set the string value of a parameter
Definition: PixTest.cc:433
void init()
sets all test parameters
Definition: PixTest.cc:62