PandaRoot
PndSdsPixelBackMapping.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 #ifndef PNDSDSPIXELBACKMAPPING_H
14 #define PNDSDSPIXELBACKMAPPING_H
15 
16 #include "PndSdsDigiPixel.h"
17 #include "PndSdsHit.h"
18 #include "PndGeoHandling.h"
19 #include <vector>
20 
22  public:
27  {
28  fDigiArray = other.fDigiArray;
29  fGeoH = other.fGeoH;
30  fVerbose = other.fVerbose;
31  return *this;
32  };
33  virtual ~PndSdsPixelBackMapping();
34 
35  void SetVerbose(Int_t level) { fVerbose = level; };
36  virtual PndSdsHit GetCluster(std::vector<PndSdsDigiPixel> pixelArray) = 0;
37 
38  std::vector<PndSdsDigiPixel> fDigiArray;
40  Int_t fVerbose;
41 };
42 
43 #endif
PndSdsPixelBackMapping(const PndSdsPixelBackMapping &other)
PndSdsPixelBackMapping & operator=(PndSdsPixelBackMapping &other)
virtual ~PndSdsPixelBackMapping()
Class to access the naming information of the MVD.
std::vector< PndSdsDigiPixel > fDigiArray
virtual PndSdsHit GetCluster(std::vector< PndSdsDigiPixel > pixelArray)=0