FairRoot/PandaRoot
PndSdsPixelBackMapping.h
Go to the documentation of this file.
1 #ifndef PNDSDSPIXELBACKMAPPING_H
2 #define PNDSDSPIXELBACKMAPPING_H
3 
4 #include "PndSdsDigiPixel.h"
5 #include "PndSdsHit.h"
6 #include "PndGeoHandling.h"
7 #include <vector>
8 
10 {
11  public :
15  fDigiArray(other.fDigiArray),
16  fGeoH(other.fGeoH),
17  fVerbose(other.fVerbose)
18  {};
20  {
21  fDigiArray=other.fDigiArray;
22  fGeoH=other.fGeoH;
23  fVerbose=other.fVerbose;
24  return *this;
25  };
26  virtual ~PndSdsPixelBackMapping();
27 
28  void SetVerbose (Int_t level) {fVerbose = level;};
29  virtual PndSdsHit GetCluster(std::vector<PndSdsDigiPixel> pixelArray) = 0;
30 
31  std::vector<PndSdsDigiPixel> fDigiArray;
33  Int_t fVerbose;
34 
35 };
36 
37 #endif
38 
PndSdsPixelBackMapping(const PndSdsPixelBackMapping &other)
PndSdsPixelBackMapping & operator=(PndSdsPixelBackMapping &other)
Class to access the naming information of the MVD.
std::vector< PndSdsDigiPixel > fDigiArray
virtual PndSdsHit GetCluster(std::vector< PndSdsDigiPixel > pixelArray)=0