CMS 3D CMS Logo

Multi5x5ClusterProducer.cc
Go to the documentation of this file.
1 // C/C++ headers
2 #include <iostream>
3 #include <vector>
4 #include <memory>
5 
6 // Framework
14 
15 // Reconstruction Classes
22 
23 // Geometry
30 
31 // EgammaCoreTools
33 
34 // Class header file
36 
38  // Parameters to identify the hit collections
39  barrelHitToken_ = consumes<EcalRecHitCollection>(ps.getParameter<edm::InputTag>("barrelHitTag"));
40 
41  endcapHitToken_ = consumes<EcalRecHitCollection>(ps.getParameter<edm::InputTag>("endcapHitTag"));
42 
43  // should cluster algo be run in barrel and endcap?
44  doEndcap_ = ps.getParameter<bool>("doEndcap");
45  doBarrel_ = ps.getParameter<bool>("doBarrel");
46 
47  // The names of the produced cluster collections
48  barrelClusterCollection_ = ps.getParameter<std::string>("barrelClusterCollection");
49  endcapClusterCollection_ = ps.getParameter<std::string>("endcapClusterCollection");
50 
51  // Island algorithm parameters
52  double barrelSeedThreshold = ps.getParameter<double>("IslandBarrelSeedThr");
53  double endcapSeedThreshold = ps.getParameter<double>("IslandEndcapSeedThr");
54 
55  const std::vector<std::string> flagnames = ps.getParameter<std::vector<std::string> >("RecHitFlagToBeExcluded");
56 
57  const std::vector<int> v_chstatus = StringToEnumValue<EcalRecHit::Flags>(flagnames);
58 
59  // Parameters for the position calculation:
61  posCalculator_ = PositionCalc(posCalcParameters);
62 
63  // Produces a collection of barrel and a collection of endcap clusters
64  produces<reco::BasicClusterCollection>(endcapClusterCollection_);
65  produces<reco::BasicClusterCollection>(barrelClusterCollection_);
66 
68  if (ps.exists("reassignSeedCrysToClusterItSeeds"))
69  reassignSeedCrysToClusterItSeeds = ps.getParameter<bool>("reassignSeedCrysToClusterItSeeds");
70 
72  barrelSeedThreshold, endcapSeedThreshold, v_chstatus, posCalculator_, reassignSeedCrysToClusterItSeeds);
73 
74  nEvt_ = 0;
75 }
76 
78 
80  if (doEndcap_) {
82  }
83  if (doBarrel_) {
85  }
86 
87  nEvt_++;
88 }
89 
93  evt.getByToken(token, rhcHandle);
94  return rhcHandle.product();
95 }
96 
98  const edm::EventSetup& es,
100  const std::string& clusterCollection,
102  // get the hit collection from the event:
103  const EcalRecHitCollection* hitCollection_p = getCollection(evt, token);
104 
105  // get the geometry and topology from the event setup:
106  edm::ESHandle<CaloGeometry> geoHandle;
107  es.get<CaloGeometryRecord>().get(geoHandle);
108 
109  const CaloSubdetectorGeometry* geometry_p;
110  std::unique_ptr<CaloSubdetectorTopology> topology_p;
111 
112  if (detector == reco::CaloID::DET_ECAL_BARREL) {
113  geometry_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalBarrel);
114  topology_p = std::make_unique<EcalBarrelTopology>(*geoHandle);
115  } else {
116  geometry_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalEndcap);
117  topology_p = std::make_unique<EcalEndcapTopology>(*geoHandle);
118  }
119 
120  const CaloSubdetectorGeometry* geometryES_p;
121  geometryES_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalPreshower);
122 
123  // Run the clusterization algorithm:
125  clusters = island_p->makeClusters(hitCollection_p, geometry_p, topology_p.get(), geometryES_p, detector);
126 
127  // create a unique_ptr to a BasicClusterCollection, copy the barrel clusters into it and put in the Event:
128  auto clusters_p = std::make_unique<reco::BasicClusterCollection>();
129  clusters_p->assign(clusters.begin(), clusters.end());
131  if (detector == reco::CaloID::DET_ECAL_BARREL)
132  bccHandle = evt.put(std::move(clusters_p), barrelClusterCollection_);
133  else
134  bccHandle = evt.put(std::move(clusters_p), endcapClusterCollection_);
135 }
T getParameter(std::string const &) const
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
Multi5x5ClusterProducer(const edm::ParameterSet &ps)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
bool exists(std::string const &parameterName) const
checks if a parameter exists
edm::EDGetTokenT< EcalRecHitCollection > barrelHitToken_
edm::EDGetTokenT< EcalRecHitCollection > endcapHitToken_
void produce(edm::Event &, const edm::EventSetup &) override
Multi5x5ClusterAlgo * island_p
void clusterizeECALPart(edm::Event &evt, const edm::EventSetup &es, const edm::EDGetTokenT< EcalRecHitCollection > &token, const std::string &clusterCollection, const reco::CaloID::Detectors detector)
std::vector< reco::BasicCluster > makeClusters(const EcalRecHitCollection *hits, const CaloSubdetectorGeometry *geometry, const CaloSubdetectorTopology *topology_p, const CaloSubdetectorGeometry *geometryES_p, reco::CaloID::Detectors detector, bool regional=false, const std::vector< RectangularEtaPhiRegion > &regions=std::vector< RectangularEtaPhiRegion >())
T const * product() const
Definition: Handle.h:69
std::vector< BasicCluster > BasicClusterCollection
collection of BasicCluster objects
const EcalRecHitCollection * getCollection(edm::Event &evt, const edm::EDGetTokenT< EcalRecHitCollection > &token)
T get() const
Definition: EventSetup.h:73
def move(src, dest)
Definition: eostools.py:511