CMS 3D CMS Logo

PFHcalRecHitCreator.h
Go to the documentation of this file.
1 #ifndef RecoParticleFlow_PFClusterProducer_PFHcalRecHitCreator_h
2 #define RecoParticleFlow_PFClusterProducer_PFHcalRecHitCreator_h
3 
5 
11 
18 
20 
21 template <typename Digi, typename Geometry,PFLayer::Layer Layer,int Detector>
23 
24  public:
26  PFRecHitCreatorBase(iConfig,iC)
27  {
29  }
30 
31  void importRecHits(std::unique_ptr<reco::PFRecHitCollection>&out,std::unique_ptr<reco::PFRecHitCollection>& cleaned ,const edm::Event& iEvent,const edm::EventSetup& iSetup) override {
32 
33 
34  beginEvent(iEvent,iSetup);
35 
37 
39  iSetup.get<CaloGeometryRecord>().get(geoHandle);
40  edm::ESHandle<HcalTopology> hcalTopology;
41  iSetup.get<HcalRecNumberingRecord>().get( hcalTopology );
42 
43  // get the hcal geometry and topology
44  const CaloSubdetectorGeometry *gTmp =
46  const Geometry *hcalGeo =dynamic_cast< const Geometry* > (gTmp);
47  const HcalTopology *theHcalTopology = hcalTopology.product();
48 
49  iEvent.getByToken(recHitToken_,recHitHandle);
50  for( const auto& erh : *recHitHandle ) {
51  HcalDetId detid = (HcalDetId)erh.detid();
53 
54  //since hbhe are together kill other detector
55  if (esd !=Detector && Detector != HcalOther )
56  continue;
57 
58  if (theHcalTopology->getMergePositionFlag() && esd == HcalEndcap) {
59  detid = theHcalTopology->idFront(detid);
60  }
61 
62  auto energy = erh.energy();
63  auto time = erh.time();
64  auto depth =detid.depth();
65 
66 
67  auto thisCell= hcalGeo->getGeometry(detid);
68 
69  // find rechit geometry
70  if(!thisCell) {
71  edm::LogError("PFHcalRecHitCreator")
72  <<"warning detid "<<detid.rawId()
73  <<" not found in geometry"<<std::endl;
74  continue;
75  }
76 
77 
78  reco::PFRecHit rh(thisCell, detid.rawId(),Layer,
79  energy);
80  rh.setTime(time); //Mike: This we will use later
81  rh.setDepth(depth);
82 
83 
84  bool rcleaned = false;
85  bool keep=true;
86 
87  //Apply Q tests
88  for( const auto& qtest : qualityTests_ ) {
89  if (!qtest->test(rh,erh,rcleaned)) {
90  keep = false;
91 
92  }
93  }
94 
95  if(keep) {
96  out->push_back(std::move(rh));
97  }
98  else if (rcleaned)
99  cleaned->push_back(std::move(rh));
100  }
101  }
102 
103 
104 
105  protected:
107  int hoDepth_;
108 
109 };
110 
116 
117 
118 #endif
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
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:49
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
PFHcalRecHitCreator< HORecHit, CaloSubdetectorGeometry, PFLayer::HCAL_BARREL2, HcalOuter > PFHORecHitCreator
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
PFHcalRecHitCreator< HBHERecHit, CaloSubdetectorGeometry, PFLayer::HCAL_BARREL1, HcalBarrel > PFHBRecHitCreator
bool getMergePositionFlag() const
Definition: HcalTopology.h:171
SeedingLayerSetsHits::SeedingLayer Layer
Definition: LayerTriplets.h:14
const int keep
int depth() const
get the tower depth
Definition: HcalDetId.h:166
int iEvent
Definition: GenABIO.cc:224
PFHcalRecHitCreator< HBHERecHit, CaloSubdetectorGeometry, PFLayer::HCAL_ENDCAP, HcalEndcap > PFHERecHitCreator
Class Geometry Contains vector for fit parameters (mean, sigma, etc.) obtained from multiple IOVs See...
Definition: DMRtrends.cc:119
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
Definition: PFRecHit.h:31
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:41
HcalSubdetector
Definition: HcalAssistant.h:31
edm::EDGetTokenT< edm::SortedCollection< Digi > > recHitToken_
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
void setTime(double time)
Definition: PFRecHit.h:73
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
PFHcalRecHitCreator< HFRecHit, CaloSubdetectorGeometry, PFLayer::HF_EM, HcalForward > PFHFEMRecHitCreator
T get() const
Definition: EventSetup.h:71
PFHcalRecHitCreator< HFRecHit, CaloSubdetectorGeometry, PFLayer::HF_HAD, HcalForward > PFHFHADRecHitCreator
HcalDetId idFront(const HcalDetId &id) const
Definition: HcalTopology.h:177
PFHcalRecHitCreator(const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511