#ifndef MARS_MSimTrigger #define MARS_MSimTrigger #ifndef MARS_MTask #include "MTask.h" #endif #ifndef MARS_MLut #include "MLut.h" #endif class MParList; class MParameterD; class MAnalogChannels; class MRawEvtHeader; class MRawRunHeader; class MPedestalCam; class MSimTrigger : public MTask { private: MAnalogChannels *fCamera; //! The analog input channels MParameterD *fPulsePos; //! The intended pulse positon MParameterD *fTrigger; //! The trigger position w.r.t. the analog channels MRawRunHeader *fRunHeader; //! The run header storing infos about the digitization MRawEvtHeader *fEvtHeader; //! The event header storing the trigger information MPedestalCam *fElectronicNoise; //! Electronic noise (for baseline correction) MPedestalCam *fGain; //! Gain of the pulses MLut fRouteAC; // Combinination map for the AC channels MLut fCoincidenceMap; // channels for which digital coincidence is checked TString fNameRouteAC; // Name for the AC routing TString fNameCoincidenceMap; // Name for the coincidence mape Float_t fDiscriminatorThreshold; // Discriminator threshold Float_t fDigitalSignalLength; // Length of the output of the discriminator Float_t fCoincidenceTime; // Minimum coincidence time (gate) Bool_t fShiftBaseline; // Shift the baseline back to 0 for the threshold (needs ElectronicNoise [MPedestalCam]) Bool_t fUngainSignal; // "Remove" the gain from the signal (needs Gain [MPedestalCam]) // MSimTrigger TObjArray *CalcCoincidence(const TObjArray &arr1, const TObjArray &arr2, Float_t gate=0) const; // MTask Int_t PreProcess(MParList *pList); Int_t Process(); // MParContainer Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); public: MSimTrigger(const char *name=NULL, const char *title=NULL); void SetNameRouteAC(const char *name) { fNameRouteAC=name; } void SetNameCoincidenceMap(const char *name) { fNameCoincidenceMap=name; } void SetDiscriminatorThreshold(Float_t th) { fDiscriminatorThreshold=th; } void SetDigitalSignalLength(Float_t ln) { fDigitalSignalLength=ln; } void SetCoincidenceTime(Float_t tm) { fCoincidenceTime=tm; } ClassDef(MSimTrigger, 0) // Task to simulate trigger electronics }; #endif