//----------------------------------------------------------- // 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 // //----------------------------------------------------------- #include "TpcRefResidualCollection.h" ClassImp(TpcRefResidualCollection) TpcRefResidualCollection::TpcRefResidualCollection() : TpcResidualCollection(), fRefIndex(-1), fRefBranch("") {;} TpcRefResidualCollection::TpcRefResidualCollection(const std::string& branch, int index) : TpcResidualCollection(), fRefIndex(index), fRefBranch(branch) { ; } TpcRefResidualCollection::TpcRefResidualCollection(const TpcRefResidualCollection& ref) : TpcResidualCollection(ref), fRefIndex(ref.fRefIndex), fRefBranch(ref.fRefBranch) {;} TpcRefResidualCollection::~TpcRefResidualCollection() { ; }