test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EgammaHLTR9Producer.cc
Go to the documentation of this file.
1 
11 
16 
18 {
19  // use configuration file to setup input/output collection names
20  recoEcalCandidateProducer_ = consumes<reco::RecoEcalCandidateCollection>(conf_.getParameter<edm::InputTag>("recoEcalCandidateProducer"));
21  ecalRechitEBToken_ = consumes<EcalRecHitCollection>(conf_.getParameter< edm::InputTag > ("ecalRechitEB"));
22  ecalRechitEEToken_ = consumes<EcalRecHitCollection>(conf_.getParameter< edm::InputTag > ("ecalRechitEE"));
23 
24  useSwissCross_ = conf_.getParameter< bool > ("useSwissCross");
25 
26  //register your products
27  produces < reco::RecoEcalCandidateIsolationMap >();
28 }
29 
31 {}
32 
33 // ------------ method called to produce the data ------------
34 
36 
38  desc.add<edm::InputTag>(("recoEcalCandidateProducer"), edm::InputTag("hltRecoEcalCandidate"));
39  desc.add<edm::InputTag>(("ecalRechitEB"), edm::InputTag("hltEcalRegionalEgammaRecHit","EcalRecHitsEB"));
40  desc.add<edm::InputTag>(("ecalRechitEE"), edm::InputTag("hltEcalRegionalEgammaRecHit","EcalRecHitsEE"));
41  desc.add<bool> (("useSwissCross"), false);
42  descriptions.add(("hltEgammaHLTR9Producer"), desc);
43 }
44 
45 
47 
48  // Get the HLT filtered objects
50  iEvent.getByToken(recoEcalCandidateProducer_,recoecalcandHandle);
51 
53 
55 
56  for(reco::RecoEcalCandidateCollection::const_iterator iRecoEcalCand = recoecalcandHandle->begin(); iRecoEcalCand != recoecalcandHandle->end(); iRecoEcalCand++){
57 
58  reco::RecoEcalCandidateRef recoecalcandref(recoecalcandHandle,iRecoEcalCand-recoecalcandHandle->begin());
59 
60  float r9 = -1;
61 
62  if (useSwissCross_){
64  iEvent.getByToken(ecalRechitEBToken_, pEBRecHits);
65  r9 = -1;
66  }
67  else{
68  float e9 = lazyTools.e3x3( *(recoecalcandref->superCluster()->seed()) );
69  if (e9 != 0 ) {r9 = lazyTools.eMax(*(recoecalcandref->superCluster()->seed()) )/e9;}
70  }
71 
72  r9Map.insert(recoecalcandref, r9);
73 
74  }
75 
76  std::auto_ptr<reco::RecoEcalCandidateIsolationMap> R9Map(new reco::RecoEcalCandidateIsolationMap(r9Map));
77  iEvent.put(R9Map);
78 
79 }
T getParameter(std::string const &) const
edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEBToken_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
edm::EDGetTokenT< reco::RecoEcalCandidateCollection > recoEcalCandidateProducer_
int iEvent
Definition: GenABIO.cc:230
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
ParameterDescriptionBase * add(U const &iLabel, T const &value)
edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEEToken_
edm::ParameterSet conf_
EgammaHLTR9Producer(const edm::ParameterSet &)
virtual void produce(edm::Event &, const edm::EventSetup &)
void insert(const key_type &k, const data_type &v)
insert an association
void add(std::string const &label, ParameterSetDescription const &psetDescription)