//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Implementation of class TpcCluster // see TpcCluster.h for details // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- // Panda Headers ---------------------- // This Class' Header ------------------ #include "TpcCluster.h" // C/C++ Headers ---------------------- // Collaborating Class Headers -------- // Class Member definitions ----------- TpcCluster::TpcCluster() : _pos(0,0,0), _sig(0.1,0.1,0.01),_amp(0), _size(0), _index(0) {} TpcCluster::TpcCluster(const TVector3& pos, unsigned int amp, unsigned int index, unsigned int size) : _pos(pos), _sig(0.1,0.1,0.01), _amp(amp), _index(index), _size(size) {} TpcCluster::TpcCluster(const TVector3& pos, const TVector3& sig, unsigned int amp, unsigned int index, unsigned int size) : _pos(pos), _sig(sig), _amp(amp), _index(index), _size(size) {} TpcCluster::~TpcCluster(){} std::ostream& operator<< (std::ostream& s, const TpcCluster& me){ s << "TpcCluster\n" << "pos=("<