//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Collection of TpcResidualObjects // Knows its reference branch and index // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Felix Boehmer (original author) // Physik Department E18, TUM // //----------------------------------------------------------- #ifndef TPCREFRESIDUALCOLL_HH #define TPCREFRESIDUALCOLL_HH #include #include "TpcResidualCollection.h" class TpcRefResidualCollection : public TpcResidualCollection { public: TpcRefResidualCollection(); TpcRefResidualCollection(const std::string& branch, int index); TpcRefResidualCollection(const TpcRefResidualCollection&); virtual ~TpcRefResidualCollection(); std::string getRefBranch() {return fRefBranch;} int getRefIndex() {return fRefIndex;} //-1 if unset protected: int fRefIndex; std::string fRefBranch; public: ClassDef(TpcRefResidualCollection,2) }; #endif