test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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) {
37 
38  beginEvent(iEvent,iSetup);
39 
41 
43  iSetup.get<CaloGeometryRecord>().get(geoHandle);
44 
45  // get the ecal geometry
46  const CaloSubdetectorGeometry *gTmp =
47  geoHandle->getSubdetectorGeometry(DetId::Ecal, Detector);
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  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 
75  //Apply Q tests
76  for( const auto& qtest : qualityTests_ ) {
77  if (!qtest->test(rh,erh,rcleaned)) {
78  keep = false;
79  }
80  }
81 
82  if(keep) {
83  rh.setTime(time);
84  rh.setDepth(1);
85  out->push_back(rh);
86  }
87  else if (rcleaned)
88  cleaned->push_back(rh);
89  }
90  }
91 
92 
93 
94  protected:
96 
97 
98 };
99 
100 
103 
104 #endif
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
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:457
edm::EDGetTokenT< EcalRecHitCollection > recHitToken_
PFEcalRecHitCreatorMaxSample< EcalBarrelGeometry, PFLayer::ECAL_BARREL, EcalBarrel > PFEBRecHitCreatorMaxSample
SeedingLayerSetsHits::SeedingLayer Layer
Definition: LayerTriplets.h:14
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
const int keep
int iEvent
Definition: GenABIO.cc:230
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
const T & get() const
Definition: EventSetup.h:56
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup)