00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef StZdcVertexMaker_hh
00027 #define StZdcVertexMaker_hh
00028
00029 #include "StMaker.h"
00030
00031 class St_ZdcCalPars;
00032
00033 class StZdcVertexMaker : public StMaker {
00034 public:
00035 StMaker* currentChain;
00036 StZdcVertexMaker(const char* name = "StZdcVertexMaker",
00037 const char* title = "event/StZdcVertexMaker");
00038 ~StZdcVertexMaker();
00039 void Clear(const char* opt="");
00040 Int_t Init();
00041 Int_t InitRun(int runumber);
00042 Int_t Make();
00043 Int_t Finish();
00044 virtual const char *GetCVS() const
00045 {static const char cvs[]="Tag $Name: $ $Id: StZdcVertexMaker.h,v 1.5 2004/01/14 22:57:29 fisyak Exp $ built "__DATE__" "__TIME__ ; return cvs;}
00046
00047 private:
00048 float mEAP0;
00049 float mEAP1;
00050 float mEAP2;
00051 float mEAP3;
00052 float mWAP0;
00053 float mWAP1;
00054 float mWAP2;
00055 float mWAP3;
00056 float mVPAR;
00057 float mOFF;
00058
00059
00060 ClassDef(StZdcVertexMaker,0)
00061 };
00062 #endif
00063
00064
00065