// File and Version Information: #ifndef TPCCLUSTERERRORRECALCTASK_HH #define TPCCLUSTERERRORRECALCTASK_HH //Base class #include "FairTask.h" #include "TClonesArray.h" #include "TString.h" class TClonesArray; class TpcSPHit; class TpcCluster; class TpcClusterErrorRecalcTask : public FairTask { public: TpcClusterErrorRecalcTask(); virtual ~TpcClusterErrorRecalcTask(); virtual InitStatus Init(); virtual void Exec(Option_t* opt); //virtual void SetParContainers(); private: TClonesArray* fClusterArray; TClonesArray* fSPHitArray; TClonesArray* fTrackArray; TString fClusterBranchName; TString fSPHitBranchName; TString fTrackBranchName; public: ClassDef(TpcClusterErrorRecalcTask,1) }; #endif