CMS 3D CMS Logo

PhotonIDProducer.cc
Go to the documentation of this file.
4 
6  photonToken_ = consumes<reco::PhotonCollection>(
7  edm::InputTag(conf_.getParameter<std::string>("photonProducer"), conf_.getParameter<std::string>("photonLabel")));
8 
9  photonCutBasedIDLooseLabel_ = conf.getParameter<std::string>("photonCutBasedIDLooseLabel");
10  photonCutBasedIDTightLabel_ = conf.getParameter<std::string>("photonCutBasedIDTightLabel");
11  photonCutBasedIDLooseEMLabel_ = conf.getParameter<std::string>("photonCutBasedIDLooseEMLabel");
12 
13  doCutBased_ = conf_.getParameter<bool>("doCutBased");
15  cutBasedAlgo_->setup(conf);
16  produces<edm::ValueMap<bool>>(photonCutBasedIDLooseLabel_);
17  produces<edm::ValueMap<bool>>(photonCutBasedIDTightLabel_);
18  produces<edm::ValueMap<bool>>(photonCutBasedIDLooseEMLabel_);
19 }
20 
22  //if (doCutBased_)
23  delete cutBasedAlgo_;
24 }
25 
27  // Read in photons
29  e.getByToken(photonToken_, photons);
30 
31  // Loop over photons and calculate photon ID using specified technique(s)
32  reco::PhotonCollection::const_iterator photon;
33  std::vector<bool> Loose;
34  std::vector<bool> Tight;
35  std::vector<bool> LooseEM;
36  for (photon = (*photons).begin(); photon != (*photons).end(); ++photon) {
37  bool LooseQual;
38  bool TightQual;
39  bool LooseEMQual;
40  if (photon->isEB())
41  cutBasedAlgo_->decideEB(&(*photon), LooseEMQual, LooseQual, TightQual);
42  else
43  cutBasedAlgo_->decideEE(&(*photon), LooseEMQual, LooseQual, TightQual);
44  LooseEM.push_back(LooseEMQual);
45  Loose.push_back(LooseQual);
46  Tight.push_back(TightQual);
47  }
48 
49  auto outlooseEM = std::make_unique<edm::ValueMap<bool>>();
50  edm::ValueMap<bool>::Filler fillerlooseEM(*outlooseEM);
51  fillerlooseEM.insert(photons, LooseEM.begin(), LooseEM.end());
52  fillerlooseEM.fill();
53  // and put it into the event
54  e.put(std::move(outlooseEM), photonCutBasedIDLooseEMLabel_);
55 
56  auto outloose = std::make_unique<edm::ValueMap<bool>>();
57  edm::ValueMap<bool>::Filler fillerloose(*outloose);
58  fillerloose.insert(photons, Loose.begin(), Loose.end());
59  fillerloose.fill();
60  // and put it into the event
61  e.put(std::move(outloose), photonCutBasedIDLooseLabel_);
62 
63  auto outtight = std::make_unique<edm::ValueMap<bool>>();
64  edm::ValueMap<bool>::Filler fillertight(*outtight);
65  fillertight.insert(photons, Tight.begin(), Tight.end());
66  fillertight.fill();
67  // and put it into the event
68  e.put(std::move(outtight), photonCutBasedIDTightLabel_);
69 }
muons2muons_cfi.photon
photon
Definition: muons2muons_cfi.py:28
PhotonIDProducer::produce
void produce(edm::Event &e, const edm::EventSetup &c) override
Definition: PhotonIDProducer.cc:26
BasicCluster.h
PhotonIDProducer::photonCutBasedIDLooseLabel_
std::string photonCutBasedIDLooseLabel_
Definition: PhotonIDProducer.h:30
CutBasedPhotonIDAlgo
Definition: CutBasedPhotonIDAlgo.h:9
PhotonIDProducer::doCutBased_
bool doCutBased_
Definition: PhotonIDProducer.h:33
PhotonIDProducer.h
PhotonIDProducer::~PhotonIDProducer
~PhotonIDProducer() override
Definition: PhotonIDProducer.cc:21
PhotonIDProducer::conf_
edm::ParameterSet conf_
Definition: PhotonIDProducer.h:26
edm::Handle< reco::PhotonCollection >
CutBasedPhotonIDAlgo::decideEE
void decideEE(const reco::Photon *pho, bool &LooseEM, bool &LoosePhoton, bool &TightPhoton)
Definition: CutBasedPhotonIDAlgo.cc:435
CutBasedPhotonIDAlgo::decideEB
void decideEB(const reco::Photon *pho, bool &LooseEM, bool &LoosePhoton, bool &TightPhoton)
Definition: CutBasedPhotonIDAlgo.cc:109
CutBasedPhotonIDAlgo::setup
void setup(const edm::ParameterSet &conf)
Definition: CutBasedPhotonIDAlgo.cc:5
PhotonIDProducer::photonToken_
edm::EDGetTokenT< reco::PhotonCollection > photonToken_
Definition: PhotonIDProducer.h:27
PhotonIDProducer::photonCutBasedIDLooseEMLabel_
std::string photonCutBasedIDLooseEMLabel_
Definition: PhotonIDProducer.h:29
PhotonIDProducer::photonCutBasedIDTightLabel_
std::string photonCutBasedIDTightLabel_
Definition: PhotonIDProducer.h:31
edm::ParameterSet
Definition: ParameterSet.h:47
PhotonIDProducer::PhotonIDProducer
PhotonIDProducer(const edm::ParameterSet &conf)
Definition: PhotonIDProducer.cc:5
BPHMonitor_cfi.photons
photons
Definition: BPHMonitor_cfi.py:91
edm::EventSetup
Definition: EventSetup.h:58
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
ValueMap.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::helper::Filler
Definition: ValueMap.h:22
PhotonIDProducer::cutBasedAlgo_
CutBasedPhotonIDAlgo * cutBasedAlgo_
Definition: PhotonIDProducer.h:24
c
auto & c
Definition: CAHitNtupletGeneratorKernelsImpl.h:56
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37