CMS 3D CMS Logo

RecoMETExtractor.cc
Go to the documentation of this file.
1 
22 
23 #include <memory>
24 
25 namespace pat {
26 
28  public:
29  explicit RecoMETExtractor(const edm::ParameterSet& iConfig);
30  ~RecoMETExtractor() override;
31 
32  void produce(edm::StreamID streamID, edm::Event& iEvent, const edm::EventSetup& iSetup) const override;
33 
34  private:
36 
38  };
39 
40 } // namespace pat
41 
42 using namespace pat;
43 
45  edm::InputTag metIT = iConfig.getParameter<edm::InputTag>("metSource");
46  metSrcToken_ = consumes<pat::METCollection>(metIT);
47 
48  std::string corLevel = iConfig.getParameter<std::string>("correctionLevel");
49 
50  //all possible met flavors
51  if (corLevel == "raw") {
53  } else if (corLevel == "type1") {
55  } else if (corLevel == "type01") {
57  } else if (corLevel == "typeXY") {
59  } else if (corLevel == "type1XY") {
61  } else if (corLevel == "type01XY") {
63  } else if (corLevel == "type1Smear") {
65  } else if (corLevel == "type01Smear") {
67  } else if (corLevel == "type1SmearXY") {
69  } else if (corLevel == "type01SmearXY") {
71  } else if (corLevel == "rawCalo") {
73  } else if (corLevel == "rawDeepResponseTune") {
75  } else if (corLevel == "rawDeepResolutionTune") {
77  } else {
78  //throw exception
79  }
80 
81  // produces vector of recoMet
82  produces<std::vector<reco::MET> >();
83 }
84 
86 
89  iEvent.getByToken(metSrcToken_, src);
90  if (src->empty())
91  edm::LogError("RecoMETExtractor::produce") << "input reco MET collection is empty";
92 
93  std::vector<reco::MET>* metCol = new std::vector<reco::MET>();
94 
95  reco::MET met(src->front().corSumEt(corLevel_), src->front().corP4(corLevel_), src->front().vertex());
96 
97  metCol->push_back(met);
98 
99  std::unique_ptr<std::vector<reco::MET> > recoMETs(metCol);
100  iEvent.put(std::move(recoMETs));
101 }
102 
ConfigurationDescriptions.h
edm::StreamID
Definition: StreamID.h:30
MessageLogger.h
pat::RecoMETExtractor::corLevel_
pat::MET::METCorrectionLevel corLevel_
Definition: RecoMETExtractor.cc:37
pat::MET::Type01XY
Definition: MET.h:179
edm::EDGetTokenT
Definition: EDGetToken.h:33
pat::MET::Type1Smear
Definition: MET.h:180
pat::MET::Type01SmearXY
Definition: MET.h:183
pat::RecoMETExtractor::~RecoMETExtractor
~RecoMETExtractor() override
Definition: RecoMETExtractor.cc:85
edm::Handle
Definition: AssociativeIterator.h:50
BTaggingMonitor_cfi.met
met
Definition: BTaggingMonitor_cfi.py:84
reco::MET
Definition: MET.h:41
MakerMacros.h
pat::MET::Type01Smear
Definition: MET.h:181
pat::MET::RawDeepResponseTune
Definition: MET.h:187
pat::MET::Raw
Definition: MET.h:174
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
pat::MET::RawCalo
Definition: MET.h:184
pat::RecoMETExtractor::produce
void produce(edm::StreamID streamID, edm::Event &iEvent, const edm::EventSetup &iSetup) const override
Definition: RecoMETExtractor.cc:87
ParameterSetDescription.h
pat::RecoMETExtractor
Retrieves the recoMET from a pat::MET.
Definition: RecoMETExtractor.cc:27
edm::global::EDProducer
Definition: EDProducer.h:32
edm::ParameterSet
Definition: ParameterSet.h:47
TrackRefitter_38T_cff.src
src
Definition: TrackRefitter_38T_cff.py:24
Event.h
pat::MET::Type01
Definition: MET.h:176
pat::MET::Type1SmearXY
Definition: MET.h:182
pat::MET::Type1
Definition: MET.h:175
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup
Definition: EventSetup.h:58
pat
Definition: HeavyIon.h:7
MET.h
pat::RecoMETExtractor::metSrcToken_
edm::EDGetTokenT< std::vector< pat::MET > > metSrcToken_
Definition: RecoMETExtractor.cc:35
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
InputTag.h
pat::MET::TypeXY
Definition: MET.h:177
pat::RecoMETExtractor::RecoMETExtractor
RecoMETExtractor(const edm::ParameterSet &iConfig)
Definition: RecoMETExtractor.cc:44
pat::MET::METCorrectionLevel
METCorrectionLevel
Definition: MET.h:173
MET.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
ConsumesCollector.h
ParameterSet.h
EDProducer.h
edm::Event
Definition: Event.h:73
pat::MET::Type1XY
Definition: MET.h:178
edm::Log
Definition: MessageLogger.h:70
edm::InputTag
Definition: InputTag.h:15
pat::MET::RawDeepResolutionTune
Definition: MET.h:188