#ifndef MVDSTRIPCLUSTER_HH #define MVDSTRIPCLUSTER_HH #include "MvdCluster.h" #include #include class MvdStripCluster: public MvdCluster { public: MvdStripCluster(); MvdStripCluster(double meanChannel, double errChan, std::string clusterType , unsigned int frontend, unsigned int wafer, unsigned int size, double totalde, double meanTime, std::string det, unsigned int mcid); ~MvdStripCluster(); const double getMeanChannel() const {return _meanChannel;}; const double getErrMeanChannel() const {return _errMeanChannel;}; const std::string getClusterType() const {return _clusterType;}; private: double _meanChannel; double _errMeanChannel; std::string _clusterType; // friends friend bool operator==(const MvdStripCluster& left, const MvdStripCluster& right); friend std::ostream& operator<<(std::ostream& ostr, const MvdStripCluster& strDigi); ClassDef(MvdStripCluster,1); }; #endif