StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StZdcVertexMaker.h
1 /***************************************************************************
2  *
3  * $Id: StZdcVertexMaker.h,v 1.6 2014/08/06 11:43:52 jeromel Exp $
4  *
5  * Author: Johan E. Gonzalez, August 2001
6  ***************************************************************************
7  *
8  * Description: This is the .h file for StZdcVertexMaker.cxx
9  *
10  ***************************************************************************
11  *
12  * $Log: StZdcVertexMaker.h,v $
13  * Revision 1.6 2014/08/06 11:43:52 jeromel
14  * Suffix on literals need to be space (later gcc compiler makes it an error) - first wave of fixes
15  *
16  * Revision 1.5 2004/01/14 22:57:29 fisyak
17  * Add declaration of InitRun
18  *
19  * Revision 1.4 2003/10/06 04:06:14 perev
20  * cvs() overloaded
21  *
22  * Revision 1.3 2003/09/10 19:47:42 perev
23  * ansi corrs
24  *
25  * Revision 1.2 2001/08/31 19:07:36 macross
26  * Modified code to retrieve ADC and TDC pulses from TrgDet table
27  *
28  **************************************************************************/
29 #ifndef StZdcVertexMaker_hh
30 #define StZdcVertexMaker_hh
31 
32 #include "StMaker.h"
33 
34 class St_ZdcCalPars;
35 
36 class StZdcVertexMaker : public StMaker {
37 public:
38  StMaker* currentChain;
39  StZdcVertexMaker(const char* name = "StZdcVertexMaker",
40  const char* title = "event/StZdcVertexMaker");
42  void Clear(const char* opt="");
43  Int_t Init();
44  Int_t InitRun(int runumber);
45  Int_t Make();
46  Int_t Finish();
47  virtual const char *GetCVS() const
48  {static const char cvs[]="Tag $Name: $ $Id: StZdcVertexMaker.h,v 1.6 2014/08/06 11:43:52 jeromel Exp $ built " __DATE__ " " __TIME__ ; return cvs;}
49 
50 private:
51  float mEAP0;
52  float mEAP1;
53  float mEAP2;
54  float mEAP3;
55  float mWAP0;
56  float mWAP1;
57  float mWAP2;
58  float mWAP3;
59  float mVPAR;
60  float mOFF;
61 
62  // the following is a ROOT macro that is needed in all ROOT accessible code
63  ClassDef(StZdcVertexMaker,0)
64 };
65 #endif
66 
67 
68