CMS 3D CMS Logo

PFEcalRecHitCreatorMaxSample.h
Go to the documentation of this file.
1 #ifndef RecoParticleFlow_PFClusterProducer_PFEcalRecHitCreatorMaxSample_h
2 #define RecoParticleFlow_PFClusterProducer_PFEcalRecHitCreatorMaxSample_h
3 
8 
11 
12 
18 
25 
26 template <typename Geometry,PFLayer::Layer Layer,int Detector>
28 
29  public:
31  PFRecHitCreatorBase(iConfig,iC)
32  {
34  }
35 
36  void importRecHits(std::unique_ptr<reco::PFRecHitCollection>&out,std::unique_ptr<reco::PFRecHitCollection>& cleaned ,const edm::Event& iEvent,const edm::EventSetup& iSetup) override {
37 
38  beginEvent(iEvent,iSetup);
39 
41 
43  iSetup.get<CaloGeometryRecord>().get(geoHandle);
44 
45  // get the ecal geometry
46  const CaloSubdetectorGeometry *gTmp =
48 
49  const Geometry *ecalGeo = dynamic_cast<const Geometry*>(gTmp);
50 
51  iEvent.getByToken(recHitToken_,recHitHandle);
52  for(const auto& erh : *recHitHandle ) {
53  const DetId& detid = erh.detid();
54  auto energy = erh.energy();
55  auto time = erh.time();
56 
57  std::shared_ptr<const CaloCellGeometry> thisCell= ecalGeo->getGeometry(detid);
58 
59  // find rechit geometry
60  if(!thisCell) {
61  edm::LogError("PFEcalRecHitCreatorMaxSample")
62  <<"warning detid "<<detid.rawId()
63  <<" not found in geometry"<<std::endl;
64  continue;
65  }
66 
67 
68  reco::PFRecHit rh(thisCell, detid.rawId(),Layer,
69  energy);
70 
71 
72  bool rcleaned = false;
73  bool keep=true;
74  bool hi = true; // this is std version for which the PF ZS is always applied
75 
76  //Apply Q tests
77  for( const auto& qtest : qualityTests_ ) {
78  if (!qtest->test(rh,erh,rcleaned,hi)) {
79  keep = false;
80  }
81  }
82 
83  if(keep) {
84  rh.setTime(time);
85  rh.setDepth(1);
86  out->push_back(rh);
87  }
88  else if (rcleaned)
89  cleaned->push_back(rh);
90  }
91  }
92 
93 
94 
95  protected:
97 
98 
99 };
100 
101 
104 
105 #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
PFEcalRecHitCreatorMaxSample(const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::EDGetTokenT< EcalRecHitCollection > recHitToken_
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
PFEcalRecHitCreatorMaxSample< EcalBarrelGeometry, PFLayer::ECAL_BARREL, EcalBarrel > PFEBRecHitCreatorMaxSample
SeedingLayerSetsHits::SeedingLayer Layer
Definition: LayerTriplets.h:14
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
const int keep
int iEvent
Definition: GenABIO.cc:224
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
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
PFEcalRecHitCreatorMaxSample< EcalEndcapGeometry, PFLayer::ECAL_ENDCAP, EcalEndcap > PFEERecHitCreatorMaxSample
Definition: DetId.h:18
T get() const
Definition: EventSetup.h:71