#ifndef PNDTORINODETECTORHITPRODUCERSMEARING_H #define PNDTORINODETECTORHITPRODUCERSMEARING_H #include "FairTask.h" class TClonesArray; class PndTorinoDetectorHitProducerSmearing : public FairTask { public: /** Default constructor **/ PndTorinoDetectorHitProducerSmearing(); /** Constructor with parameters (Optional) // PndTorinoDetectorHitProducerSmearing(Int_t verbose); /** Destructor **/ ~PndTorinoDetectorHitProducerSmearing(); /** Initiliazation of task at the beginning of a run **/ virtual InitStatus Init(); /** ReInitiliazation of task when the runID changes **/ virtual InitStatus ReInit(); /** Executed for each event. **/ virtual void Exec(Option_t* opt); /** Load the parameter container from the runtime database **/ virtual void SetParContainers(); /** Finish task called at the end of the run **/ virtual void Finish(); private: /** Input array from previous already existing data level **/ TClonesArray* fPointsArray; /** Output array to new data level**/ TClonesArray* fHitsArray; PndTorinoDetectorHitProducerSmearing(const PndTorinoDetectorHitProducerSmearing&); PndTorinoDetectorHitProducerSmearing operator=(const PndTorinoDetectorHitProducerSmearing&); ClassDef(PndTorinoDetectorHitProducerSmearing,1); }; #endif