#ifndef ROOT_THaCoincTime
#define ROOT_THaCoincTime
#include "THaPhysicsModule.h"
#include "TString.h"
class THaSpectrometer;
class THaScintillator;
class THaDetMap;
class THaTrack;
class THaCoincTime : public THaPhysicsModule {
public:
THaCoincTime( const char* name, const char* description,
const char* spec1="L", const char* spec2="R",
Double_t mass1 = .938272, Double_t mass2 = 0.000511,
const char* ch_name1=0, const char* ch_name2=0);
virtual ~THaCoincTime();
virtual void Clear( Option_t* opt="" );
virtual EStatus Init( const TDatime& run_time );
virtual Int_t Process( const THaEvData& );
protected:
TString fSpectN1, fSpectN2;
Double_t fpmass1, fpmass2;
THaSpectrometer *fSpect1, *fSpect2;
Double_t fTdcRes[2];
Double_t fTdcOff[2];
TString fTdcLabels[2];
Int_t fSz1, fSz2;
Int_t fNTr1, fNTr2;
Double_t* fVxTime1;
Double_t* fVxTime2;
Double_t fdTdc[2];
Int_t fSzNtr;
Int_t fNtimes;
Int_t* fTrInd1;
Int_t* fTrInd2;
Double_t* fDiffT2by1;
Double_t* fDiffT1by2;
virtual Int_t DefineVariables( EMode mode = kDefine );
virtual Int_t ReadDatabase( const TDatime& date );
THaDetMap *fDetMap;
public:
ClassDef(THaCoincTime,0)
};
#endif
Last change: Sat Nov 7 21:26:44 2009
Last generated: 2009-11-07 21:26
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.