CMS 3D CMS Logo

SiPixelClusterProducer.h
Go to the documentation of this file.
1 #ifndef RecoLocalTracker_SiPixelClusterizer_SiPixelClusterProducer_h
2 #define RecoLocalTracker_SiPixelClusterizer_SiPixelClusterProducer_h
3 
4 //---------------------------------------------------------------------------
29 //---------------------------------------------------------------------------
30 
31 #include "PixelClusterizerBase.h"
32 
33 //#include "Geometry/CommonDetUnit/interface/TrackingGeometry.h"
34 
36 
42 
48 
52 
54 public:
55  //--- Constructor, virtual destructor (just in case)
56  explicit SiPixelClusterProducer(const edm::ParameterSet& conf);
57  ~SiPixelClusterProducer() override;
58 
59  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
60 
61  void setupClusterizer(const edm::ParameterSet& conf);
62 
63  //--- The top-level event method.
64  void produce(edm::Event& e, const edm::EventSetup& c) override;
65 
66  //--- Execute the algorithm(s).
67  template <typename T>
69 
70 private:
74  // TO DO: maybe allow a map of pointers?
75  std::unique_ptr<SiPixelGainCalibrationServiceBase> theSiPixelGainCalibration_;
76  const std::string clusterMode_; // user's choice of the clusterizer
77  std::unique_ptr<PixelClusterizerBase> clusterizer_; // what we got (for now, one ptr to base class)
78  const TrackerTopology* tTopo_; // needed to get correct layer number
79 
81  const int32_t maxTotalClusters_;
82 };
83 
84 #endif
static std::string const input
Definition: EdmProvDump.cc:48
std::unique_ptr< PixelClusterizerBase > clusterizer_
std::unique_ptr< SiPixelGainCalibrationServiceBase > theSiPixelGainCalibration_
edm::EDPutTokenT< SiPixelClusterCollectionNew > tPutPixelClusters
const int32_t maxTotalClusters_
Optional limit on the total number of clusters.
EDProducer to cluster PixelDigis into SiPixelClusters.
#define dso_hidden
Definition: Visibility.h:12
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::EDGetTokenT< edm::DetSetVector< PixelDigi > > tPixelDigi
edm::EDGetTokenT< SiPixelClusterCollectionNew > tPixelClusters
long double T
const TrackerTopology * tTopo_
const std::string clusterMode_