CMS 3D CMS Logo

HGCalLayerClusterProducer.cc
Go to the documentation of this file.
1 #ifndef __RecoLocalCalo_HGCRecProducers_HGCalLayerClusterProducer_H__
2 #define __RecoLocalCalo_HGCRecProducers_HGCalLayerClusterProducer_H__
3 
4 // user include files
8 
15 
23 
26 
29 
32 
34 
36 public:
39  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
40 
41  void produce(edm::Event&, const edm::EventSetup&) override;
42 
43 private:
48 
50 
51  std::unique_ptr<HGCalClusteringAlgoBase> algo;
52  bool doSharing;
54 
56  double timeOffset;
57  unsigned int nHitsTime;
58 };
59 
61 
63  : algoId(reco::CaloCluster::undefined),
64  doSharing(ps.getParameter<bool>("doSharing")),
65  detector(ps.getParameter<std::string>("detector")), // one of EE, FH, BH or "all"
66  timeClname(ps.getParameter<std::string>("timeClname")),
67  timeOffset(ps.getParameter<double>("timeOffset")),
68  nHitsTime(ps.getParameter<unsigned int>("nHitsTime")) {
69  if (detector == "HFNose") {
70  hits_hfnose_token = consumes<HGCRecHitCollection>(ps.getParameter<edm::InputTag>("HFNoseInput"));
72  } else if (detector == "all") {
73  hits_ee_token = consumes<HGCRecHitCollection>(ps.getParameter<edm::InputTag>("HGCEEInput"));
74  hits_fh_token = consumes<HGCRecHitCollection>(ps.getParameter<edm::InputTag>("HGCFHInput"));
75  hits_bh_token = consumes<HGCRecHitCollection>(ps.getParameter<edm::InputTag>("HGCBHInput"));
77  } else if (detector == "EE") {
78  hits_ee_token = consumes<HGCRecHitCollection>(ps.getParameter<edm::InputTag>("HGCEEInput"));
80  } else if (detector == "FH") {
81  hits_fh_token = consumes<HGCRecHitCollection>(ps.getParameter<edm::InputTag>("HGCFHInput"));
83  } else {
84  hits_bh_token = consumes<HGCRecHitCollection>(ps.getParameter<edm::InputTag>("HGCBHInput"));
86  }
87 
88  auto pluginPSet = ps.getParameter<edm::ParameterSet>("plugin");
89  if (detector == "HFNose") {
90  algo = HGCalLayerClusterAlgoFactory::get()->create("HFNoseCLUE", pluginPSet);
91  algo->setAlgoId(algoId, true);
92  } else {
93  algo = HGCalLayerClusterAlgoFactory::get()->create(pluginPSet.getParameter<std::string>("type"), pluginPSet);
94  algo->setAlgoId(algoId);
95  }
96 
97  produces<std::vector<float>>("InitialLayerClustersMask");
98  produces<std::vector<reco::BasicCluster>>();
99  produces<std::vector<reco::BasicCluster>>("sharing");
100  //density
101  produces<Density>();
102  //time for layer clusters
103  produces<edm::ValueMap<std::pair<float, float>>>(timeClname);
104 }
105 
107  // hgcalLayerClusters
109  edm::ParameterSetDescription pluginDesc;
110  pluginDesc.addNode(edm::PluginDescription<HGCalLayerClusterAlgoFactory>("type", "CLUE", true));
111 
112  desc.add<edm::ParameterSetDescription>("plugin", pluginDesc);
113  desc.add<std::string>("detector", "all")
114  ->setComment("all (does not include HFNose); other options: EE, FH, HFNose; other value defaults to BH");
115  desc.add<bool>("doSharing", false);
116  desc.add<edm::InputTag>("HFNoseInput", edm::InputTag("HGCalRecHit", "HGCHFNoseRecHits"));
117  desc.add<edm::InputTag>("HGCEEInput", edm::InputTag("HGCalRecHit", "HGCEERecHits"));
118  desc.add<edm::InputTag>("HGCFHInput", edm::InputTag("HGCalRecHit", "HGCHEFRecHits"));
119  desc.add<edm::InputTag>("HGCBHInput", edm::InputTag("HGCalRecHit", "HGCHEBRecHits"));
120  desc.add<std::string>("timeClname", "timeLayerCluster");
121  desc.add<double>("timeOffset", 0.0);
122  desc.add<unsigned int>("nHitsTime", 3);
123  descriptions.add("hgcalLayerClusters", desc);
124 }
125 
131 
132  std::unique_ptr<std::vector<reco::BasicCluster>> clusters(new std::vector<reco::BasicCluster>),
133  clusters_sharing(new std::vector<reco::BasicCluster>);
134  auto density = std::make_unique<Density>();
135 
136  algo->getEventSetup(es);
137 
138  //make a map detid-rechit
139  // NB for the moment just host EE and FH hits
140  // timing in digi for BH not implemented for now
141  std::unordered_map<uint32_t, const HGCRecHit*> hitmap;
142 
143  switch (algoId) {
145  evt.getByToken(hits_hfnose_token, hfnose_hits);
146  algo->populate(*hfnose_hits);
147  for (auto const& it : *hfnose_hits)
148  hitmap[it.detid().rawId()] = &(it);
149  break;
151  evt.getByToken(hits_ee_token, ee_hits);
152  algo->populate(*ee_hits);
153  for (auto const& it : *ee_hits)
154  hitmap[it.detid().rawId()] = &(it);
155  break;
157  evt.getByToken(hits_fh_token, fh_hits);
158  evt.getByToken(hits_bh_token, bh_hits);
159  if (fh_hits.isValid()) {
160  algo->populate(*fh_hits);
161  for (auto const& it : *fh_hits)
162  hitmap[it.detid().rawId()] = &(it);
163  } else if (bh_hits.isValid()) {
164  algo->populate(*bh_hits);
165  }
166  break;
168  evt.getByToken(hits_ee_token, ee_hits);
169  algo->populate(*ee_hits);
170  for (auto const& it : *ee_hits) {
171  hitmap[it.detid().rawId()] = &(it);
172  }
173  evt.getByToken(hits_fh_token, fh_hits);
174  algo->populate(*fh_hits);
175  for (auto const& it : *fh_hits) {
176  hitmap[it.detid().rawId()] = &(it);
177  }
178  evt.getByToken(hits_bh_token, bh_hits);
179  algo->populate(*bh_hits);
180  break;
181  default:
182  break;
183  }
184  algo->makeClusters();
185  *clusters = algo->getClusters(false);
186  if (doSharing)
187  *clusters_sharing = algo->getClusters(true);
188 
189  auto clusterHandle = evt.put(std::move(clusters));
190  auto clusterHandleSharing = evt.put(std::move(clusters_sharing), "sharing");
191 
192  //Keep the density
193  *density = algo->getDensity();
194  evt.put(std::move(density));
195 
196  edm::PtrVector<reco::BasicCluster> clusterPtrs, clusterPtrsSharing;
197 
198  std::vector<std::pair<float, float>> times;
199  times.reserve(clusterHandle->size());
200 
201  for (unsigned i = 0; i < clusterHandle->size(); ++i) {
202  edm::Ptr<reco::BasicCluster> ptr(clusterHandle, i);
203  clusterPtrs.push_back(ptr);
204 
205  std::pair<float, float> timeCl(-99., -1.);
206 
207  const reco::CaloCluster& sCl = (*clusterHandle)[i];
208  if (sCl.size() >= nHitsTime) {
209  std::vector<float> timeClhits;
210  std::vector<float> timeErrorClhits;
211 
212  for (auto const& hit : sCl.hitsAndFractions()) {
213  auto finder = hitmap.find(hit.first);
214  if (finder == hitmap.end())
215  continue;
216 
217  //time is computed wrt 0-25ns + offset and set to -1 if no time
218  const HGCRecHit* rechit = finder->second;
219  float rhTimeE = rechit->timeError();
220  //check on timeError to exclude scintillator
221  if (rhTimeE < 0.)
222  continue;
223  timeClhits.push_back(rechit->time() - timeOffset);
224  timeErrorClhits.push_back(1. / (rhTimeE * rhTimeE));
225  }
227  timeCl = timeEstimator.fixSizeHighestDensity(timeClhits, timeErrorClhits, nHitsTime);
228  }
229  times.push_back(timeCl);
230  }
231  std::unique_ptr<std::vector<float>> layerClustersMask(new std::vector<float>);
232  layerClustersMask->resize(clusterHandle->size(), 1.0);
233  evt.put(std::move(layerClustersMask), "InitialLayerClustersMask");
234 
235  auto timeCl = std::make_unique<edm::ValueMap<std::pair<float, float>>>();
237  filler.insert(clusterHandle, times.begin(), times.end());
238  filler.fill();
239  evt.put(std::move(timeCl), timeClname);
240 
241  if (doSharing) {
242  for (unsigned i = 0; i < clusterHandleSharing->size(); ++i) {
243  edm::Ptr<reco::BasicCluster> ptr(clusterHandleSharing, i);
244  clusterPtrsSharing.push_back(ptr);
245  }
246  }
247  algo->reset();
248 }
249 
250 #endif
ConfigurationDescriptions.h
reco::CaloCluster::size
size_t size() const
size in number of hits (e.g. in crystals for ECAL)
Definition: CaloCluster.h:187
electrons_cff.bool
bool
Definition: electrons_cff.py:393
mps_fire.i
i
Definition: mps_fire.py:428
InitialClusteringStepBase.h
MessageLogger.h
SeedFinderBase.h
HGCalLayerClusterProducer::doSharing
bool doSharing
Definition: HGCalLayerClusterProducer.cc:52
ESHandle.h
HLT_FULL_cff.finder
finder
Definition: HLT_FULL_cff.py:51987
edm::EDGetTokenT
Definition: EDGetToken.h:33
HLTEgPhaseIITestSequence_cff.doSharing
doSharing
Definition: HLTEgPhaseIITestSequence_cff.py:1317
HGCalDepthPreClusterer.h
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:85964
HGCalLayerClusterProducer::algoId
reco::CaloCluster::AlgoId algoId
Definition: HGCalLayerClusterProducer.cc:49
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
edm::PluginDescription
Definition: PluginDescription.h:98
EDProducer.h
HGCalLayerClusterProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: HGCalLayerClusterProducer.cc:126
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
HGCalLayerClusterProducer::timeClname
std::string timeClname
Definition: HGCalLayerClusterProducer.cc:55
edm::Handle
Definition: AssociativeIterator.h:50
HGCRecHit::timeError
float timeError() const
Definition: HGCRecHit.cc:78
HGCalLayerClusterProducer::~HGCalLayerClusterProducer
~HGCalLayerClusterProducer() override
Definition: HGCalLayerClusterProducer.cc:38
HGCalLayerClusterProducer::hits_bh_token
edm::EDGetTokenT< HGCRecHitCollection > hits_bh_token
Definition: HGCalLayerClusterProducer.cc:46
hgcalsimclustertime::ComputeClusterTime::fixSizeHighestDensity
std::pair< float, float > fixSizeHighestDensity(std::vector< float > &time, std::vector< float > weight=std::vector< float >(), unsigned int minNhits=3, float deltaT=0.210, float timeWidthBy=0.5)
Definition: ComputeClusterTime.cc:64
MakerMacros.h
HGCalLayerClusterProducer::hits_hfnose_token
edm::EDGetTokenT< HGCRecHitCollection > hits_hfnose_token
Definition: HGCalLayerClusterProducer.cc:47
PFClusterEnergyCorrectorBase.h
HGCalLayerClusterProducer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: HGCalLayerClusterProducer.cc:106
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
DDAxes::undefined
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
HLTEgPhaseIITestSequence_cff.nHitsTime
nHitsTime
Definition: HLTEgPhaseIITestSequence_cff.py:1319
edm::PtrVector
Definition: PtrVector.h:36
hgcal_clustering::Density
std::map< DetId, float > Density
Definition: HGCalClusteringAlgoBase.h:43
reco::CaloCluster
Definition: CaloCluster.h:31
PFClusterBuilderBase.h
PFCluster.h
reco::CaloCluster::AlgoId
AlgoId
Definition: CaloCluster.h:33
edm::Event::getByToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:531
HGCalLayerClusterAlgoFactory.h
ParameterSetDescription.h
PFCPositionCalculatorBase.h
HGCalLayerClusterProducer::timeOffset
double timeOffset
Definition: HGCalLayerClusterProducer.cc:56
reco::CaloCluster::hfnose
Definition: CaloCluster.h:43
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
CaloRecHit::time
constexpr float time() const
Definition: CaloRecHit.h:31
HGCRecHit
Definition: HGCRecHit.h:14
bsc_activity_cfg.clusters
clusters
Definition: bsc_activity_cfg.py:36
edm::PtrVector::push_back
void push_back(Ptr< T > const &iPtr)
Definition: PtrVector.h:149
RecHitTopologicalCleanerBase.h
ComputeClusterTime.h
PluginDescription.h
HGCalLayerClusterProducer::hits_ee_token
edm::EDGetTokenT< HGCRecHitCollection > hits_ee_token
Definition: HGCalLayerClusterProducer.cc:44
HGCalLayerClusterProducer::algo
std::unique_ptr< HGCalClusteringAlgoBase > algo
Definition: HGCalLayerClusterProducer.cc:51
HGCalGeometry.h
edm::ParameterSet
Definition: ParameterSet.h:47
Event.h
HGCalLayerClusterProducer::hits_fh_token
edm::EDGetTokenT< HGCRecHitCollection > hits_fh_token
Definition: HGCalLayerClusterProducer.cc:45
reco::CaloCluster::hitsAndFractions
const std::vector< std::pair< DetId, float > > & hitsAndFractions() const
Definition: CaloCluster.h:210
trigObjTnPSource_cfi.filler
filler
Definition: trigObjTnPSource_cfi.py:21
HGCalLayerClusterProducer::detector
std::string detector
Definition: HGCalLayerClusterProducer.cc:53
createfilelist.int
int
Definition: createfilelist.py:10
edm::Event::put
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
edm::stream::EDProducer
Definition: EDProducer.h:38
IdealGeometryRecord.h
edm::EventSetup
Definition: EventSetup.h:57
edm::ParameterSetDescription::addNode
ParameterDescriptionNode * addNode(ParameterDescriptionNode const &node)
Definition: ParameterSetDescription.cc:41
HLTEgPhaseIITestSequence_cff.timeClname
timeClname
Definition: HLTEgPhaseIITestSequence_cff.py:1363
get
#define get
reco::CaloCluster::hgcal_had
Definition: CaloCluster.h:41
edm::Ptr
Definition: AssociationVector.h:31
ValueMap.h
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
CalibratedDigis_cfi.timeOffset
timeOffset
Definition: CalibratedDigis_cfi.py:23
reco::CaloCluster::hgcal_mixed
Definition: CaloCluster.h:42
Frameworkfwd.h
edm::ValueMap
Definition: ValueMap.h:107
HGCalLayerClusterProducer::nHitsTime
unsigned int nHitsTime
Definition: HGCalLayerClusterProducer.cc:57
hgcalsimclustertime::ComputeClusterTime
Definition: ComputeClusterTime.h:23
HGCalLayerClusterProducer::HGCalLayerClusterProducer
HGCalLayerClusterProducer(const edm::ParameterSet &)
Definition: HGCalLayerClusterProducer.cc:62
HGCalLayerClusterProducer
Definition: HGCalLayerClusterProducer.cc:35
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
hgcalTestNeighbor_cfi.detector
detector
Definition: hgcalTestNeighbor_cfi.py:6
reco::CaloCluster::hgcal_em
Definition: CaloCluster.h:40
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
HLTEgPhaseIITestSequence_cff.algoId
algoId
Definition: HLTEgPhaseIITestSequence_cff.py:2167
hit
Definition: SiStripHitEffFromCalibTree.cc:88
fastSimProducer_cff.density
density
Definition: fastSimProducer_cff.py:61
Density
hgcal_clustering::Density Density
Definition: HGCalImagingAlgo.h:29
edm::PtrVectorBase::reserve
void reserve(size_type n)
Reserve space for RefVector.
Definition: PtrVectorBase.h:93