//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Implementation of class PndTpcCluster // see PndTpcCluster.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 "PndTpcCluster.h" // C/C++ Headers ---------------------- // Collaborating Class Headers -------- // Class Member definitions ----------- PndTpcCluster::PndTpcCluster() : _pos(0,0,0), _sig(0.1,0.1,0.01),_cov(3,3),_amp(0), _size(0), _nPad(0), _nPadX(0), _nPadY(0), _index(0) {} PndTpcCluster::PndTpcCluster(const TVector3& pos, double amp, unsigned int index, unsigned int size) : _pos(pos), _sig(0.1,0.1,0.01),_cov(3,3), _amp(amp), _index(index), _size(size) {} PndTpcCluster::PndTpcCluster(const TVector3& pos, const TVector3& sig, double amp, unsigned int index, unsigned int size) : _pos(pos), _sig(sig) ,_cov(3,3), _amp(amp), _index(index), _size(size) {} PndTpcCluster::~PndTpcCluster(){} std::ostream& operator<< (std::ostream& s, const PndTpcCluster& me){ s << "PndTpcCluster\n" << "pos=("<