// ------------------------------------------------------------------------- // ----- PndMvdRecoTask header file ----- // ----- Created 20/03/07 by R.Kliemt ----- // ------------------------------------------------------------------------- /** PndMvdRecoTask.h *@author R.Kliemt ** ** The ideal tracking produces tracks of type PndSdsHit by using MC information ** directly, but with the correct data interface. **/ #ifndef PNDMVDRECOTASK_H #define PNDMVDRECOTASK_H #include "PndSdsRecoTask.h" class TClonesArray; // class PndSdsHitMaker; class PndMvdRecoTask : public PndSdsRecoTask { public: /** Default constructor **/ PndMvdRecoTask(); // PndSdsRecoTask(Double_t sx, Double_t sy, Double_t sz); PndMvdRecoTask(std::string type); /** Destructor **/ virtual ~PndMvdRecoTask(); virtual void SetBranchNames(TString inPixelBranchname, TString inStripBranchname, TString outHitBranchname, TString folderName); virtual void SetBranchNames(); ClassDef(PndMvdRecoTask,1); }; #endif