//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Implementation of class TpcPrimaryCluster // see TpcPrimaryCluster.hh for details // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // Cristoforo Simonetto TUM // // //----------------------------------------------------------- // This Class' Header ------------------ #include "TpcPrimaryCluster.h" #include "PndDetectorList.h" // C/C++ Headers ---------------------- // Collaborating Class Headers -------- // Class Member definitions ----------- ClassImp(TpcPrimaryCluster); TpcPrimaryCluster::TpcPrimaryCluster() : ft(0), fq(0), fmcTrackId(0),fmcHitId(0),fpos(0,0,0) {} TpcPrimaryCluster::TpcPrimaryCluster(const double T, const int Q, const TVector3& Pos, const unsigned int McTrackId, const unsigned int McHitId, const int McSecId) : ft(T), fq(Q), fmcTrackId(McTrackId),fmcHitId(McHitId),fpos(Pos), fmcSecId(McSecId) { } TpcPrimaryCluster::~TpcPrimaryCluster() {;}