CMS 3D CMS Logo

PATMuonSlimmer.cc
Go to the documentation of this file.
1 
11 
15 
23 
24 namespace pat {
25 
27  public:
28  explicit PATMuonSlimmer(const edm::ParameterSet & iConfig);
29  virtual ~PATMuonSlimmer() { }
30 
31  virtual void produce(edm::Event & iEvent, const edm::EventSetup & iSetup) override;
32  virtual void beginLuminosityBlock(const edm::LuminosityBlock&, const edm::EventSetup&) override final;
33 
34  private:
36  std::vector<edm::EDGetTokenT<reco::PFCandidateCollection>> pf_;
37  std::vector<edm::EDGetTokenT<edm::Association<pat::PackedCandidateCollection>>> pf2pc_;
38  const bool linkToPackedPF_;
40  const bool modifyMuon_;
41  std::unique_ptr<pat::ObjectModifier<pat::Muon> > muonModifier_;
42  };
43 
44 } // namespace
45 
47  src_(consumes<pat::MuonCollection>(iConfig.getParameter<edm::InputTag>("src"))),
48  linkToPackedPF_(iConfig.getParameter<bool>("linkToPackedPFCandidates")),
49  saveTeVMuons_(iConfig.getParameter<std::string>("saveTeVMuons")),
50  dropDirectionalIso_(iConfig.getParameter<std::string>("dropDirectionalIso")),
51  dropPfP4_(iConfig.getParameter<std::string>("dropPfP4")),
52  slimCaloVars_(iConfig.getParameter<std::string>("slimCaloVars")),
53  slimKinkVars_(iConfig.getParameter<std::string>("slimKinkVars")),
54  slimCaloMETCorr_(iConfig.getParameter<std::string>("slimCaloMETCorr")),
55  slimMatches_(iConfig.getParameter<std::string>("slimMatches")),
56  modifyMuon_(iConfig.getParameter<bool>("modifyMuons"))
57 {
58  if (linkToPackedPF_) {
59  const std::vector<edm::InputTag> & pf = iConfig.getParameter<std::vector<edm::InputTag>>("pfCandidates");
60  const std::vector<edm::InputTag> & pf2pc = iConfig.getParameter<std::vector<edm::InputTag>>("packedPFCandidates");
61  if (pf.size() != pf2pc.size()) throw cms::Exception("Configuration") << "Mismatching pfCandidates and packedPFCandidates\n";
62  for (const edm::InputTag &tag : pf) pf_.push_back(consumes<reco::PFCandidateCollection>(tag));
64  }
65 
67  if( modifyMuon_ ) {
68  const edm::ParameterSet& mod_config = iConfig.getParameter<edm::ParameterSet>("modifierConfig");
69  muonModifier_.reset(new pat::ObjectModifier<pat::Muon>(mod_config) );
70  muonModifier_->setConsumes(sumes);
71  } else {
72  muonModifier_.reset(nullptr);
73  }
74  produces<std::vector<pat::Muon> >();
75 }
76 
77 void
79  if( modifyMuon_ ) muonModifier_->setEventContent(iSetup);
80 }
81 
82 void
84  using namespace edm;
85  using namespace std;
86 
88  iEvent.getByToken(src_, src);
89 
90  auto out = std::make_unique<std::vector<pat::Muon>>();
91  out->reserve(src->size());
92 
93  if( modifyMuon_ ) { muonModifier_->setEvent(iEvent); }
94 
95  std::map<reco::CandidatePtr,pat::PackedCandidateRef> mu2pc;
96  if (linkToPackedPF_) {
99  for (unsigned int ipfh = 0, npfh = pf_.size(); ipfh < npfh; ++ipfh) {
100  iEvent.getByToken(pf_[ipfh], pf);
101  iEvent.getByToken(pf2pc_[ipfh], pf2pc);
102  const auto & pfcoll = (*pf);
103  const auto & pfmap = (*pf2pc);
104  for (unsigned int i = 0, n = pf->size(); i < n; ++i) {
105  const reco::PFCandidate &p = pfcoll[i];
106  if (p.muonRef().isNonnull()) mu2pc[refToPtr(p.muonRef())] = pfmap[reco::PFCandidateRef(pf, i)];
107  }
108  }
109  }
110 
111  for (vector<pat::Muon>::const_iterator it = src->begin(), ed = src->end(); it != ed; ++it) {
112  out->push_back(*it);
113  pat::Muon & mu = out->back();
114 
115  if( modifyMuon_ ) { muonModifier_->modify(mu); }
116 
117  if (saveTeVMuons_(mu)){mu.embedPickyMuon(); mu.embedTpfmsMuon(); mu.embedDytMuon();}
118  if (linkToPackedPF_) {
119  mu.refToOrig_ = refToPtr(mu2pc[mu.refToOrig_]);
120  }
121  if (dropDirectionalIso_(mu)) {
123  mu.setPFIsolation("pfIsoMeanDRProfileR03",zero);
124  mu.setPFIsolation("pfIsoSumDRProfileR03",zero);
125  mu.setPFIsolation("pfIsoMeanDRProfileR04",zero);
126  mu.setPFIsolation("pfIsoSumDRProfileR04",zero);
127  }
129  if (slimCaloVars_(mu) && mu.isEnergyValid()) {
130  reco::MuonEnergy ene = mu.calEnergy();
131  if (ene.tower) ene.tower = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.tower);
132  if (ene.towerS9) ene.towerS9 = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.towerS9);
133  if (ene.had) ene.had = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.had);
134  if (ene.hadS9) ene.hadS9 = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.hadS9);
135  if (ene.hadMax) ene.hadMax = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.hadMax);
136  if (ene.em) ene.em = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.em);
137  if (ene.emS25) ene.emS25 = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.emS25);
138  if (ene.emMax) ene.emMax = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.emMax);
139  if (ene.hcal_time) ene.hcal_time = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.hcal_time);
140  if (ene.hcal_timeError) ene.hcal_timeError = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.hcal_timeError);
141  if (ene.ecal_time) ene.ecal_time = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.ecal_time);
142  if (ene.ecal_timeError) ene.ecal_timeError = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.ecal_timeError);
143  ene.ecal_position = math::XYZPointF(MiniFloatConverter::reduceMantissaToNbitsRounding<14>(ene.ecal_position.X()),
144  MiniFloatConverter::reduceMantissaToNbitsRounding<14>(ene.ecal_position.Y()),
145  MiniFloatConverter::reduceMantissaToNbitsRounding<14>(ene.ecal_position.Z()));
146  ene.hcal_position = math::XYZPointF(MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.hcal_position.X()),
147  MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.hcal_position.Y()),
148  MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.hcal_position.Z()));
149  mu.setCalEnergy(ene);
150  }
151  if (slimKinkVars_(mu) && mu.isQualityValid()) {
153  qual.tkKink_position = math::XYZPointF(MiniFloatConverter::reduceMantissaToNbitsRounding<12>(qual.tkKink_position.X()),
154  MiniFloatConverter::reduceMantissaToNbitsRounding<12>(qual.tkKink_position.Y()),
155  MiniFloatConverter::reduceMantissaToNbitsRounding<12>(qual.tkKink_position.Z()));
156  mu.setCombinedQuality(qual);
157  }
160  corrs = reco::MuonMETCorrectionData(corrs.type(), MiniFloatConverter::reduceMantissaToNbitsRounding<10>(corrs.corrX()), MiniFloatConverter::reduceMantissaToNbitsRounding<10>(corrs.corrY()));
161  mu.embedCaloMETMuonCorrs(corrs);
162  }
163  if (slimMatches_(mu) && mu.isMatchesValid()) {
164  for (reco::MuonChamberMatch & cmatch : mu.matches()) {
165  cmatch.edgeX = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.edgeX);
166  cmatch.edgeY = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.edgeY);
167  cmatch.xErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.xErr);
168  cmatch.yErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.yErr);
169  cmatch.dXdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.dXdZErr);
170  cmatch.dYdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.dYdZErr);
171  for (reco::MuonSegmentMatch & smatch : cmatch.segmentMatches) {
172  smatch.xErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.xErr);
173  smatch.yErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.yErr);
174  smatch.dXdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.dXdZErr);
175  smatch.dYdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.dYdZErr);
176  }
177  }
178  }
179  }
180 
181  iEvent.put(std::move(out));
182 }
183 
185 using namespace pat;
const edm::EDGetTokenT< pat::MuonCollection > src_
T getParameter(std::string const &) const
float ecal_timeError
Definition: MuonEnergy.h:38
void embedDytMuon()
embed reference to the above dyt Track
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
const StringCutObjectSelector< pat::Muon > dropDirectionalIso_
const StringCutObjectSelector< pat::Muon > slimKinkVars_
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:252
void embedTpfmsMuon()
embed reference to the above tpfms Track
Ptr< typename C::value_type > refToPtr(Ref< C, typename C::value_type, refhelper::FindUsingAdvance< C, typename C::value_type > > const &ref)
Definition: RefToPtr.h:18
PATMuonSlimmer(const edm::ParameterSet &iConfig)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const bool linkToPackedPF_
std::vector< edm::EDGetTokenT< reco::PFCandidateCollection > > pf_
bool isMatchesValid() const
Definition: Muon.h:142
const StringCutObjectSelector< pat::Muon > slimCaloVars_
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< float > > XYZPointF
point in space with cartesian internal representation
Definition: Point3D.h:10
void setCalEnergy(const MuonEnergy &calEnergy)
set energy deposition information
Definition: Muon.h:113
std::unique_ptr< pat::ObjectModifier< pat::Muon > > muonModifier_
float towerS9
total energy in 3x3 tower shape
Definition: MuonEnergy.h:12
float ecal_time
Calorimeter timing.
Definition: MuonEnergy.h:37
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: HeavyIon.h:7
int iEvent
Definition: GenABIO.cc:230
float emS25
energy deposited in 5x5 ECAL crystal shape around central crystal
Definition: MuonEnergy.h:20
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
MuonQuality combinedQuality() const
get energy deposition information
Definition: Muon.h:121
void setPFIsolation(const std::string &label, const reco::MuonPFIsolation &deposit)
const int mu
Definition: Constants.h:22
bool isQualityValid() const
Definition: Muon.h:119
math::XYZPointF hcal_position
Definition: MuonEnergy.h:44
bool isEnergyValid() const
Definition: Muon.h:109
reco::MuonRef muonRef() const
Definition: PFCandidate.cc:455
MuonEnergy calEnergy() const
get energy deposition information
Definition: Muon.h:111
Slimmer of PAT Muons.
float emMax
maximal energy of ECAL crystal in the 5x5 shape
Definition: MuonEnergy.h:22
const StringCutObjectSelector< pat::Muon > dropPfP4_
float hadMax
maximal energy of HCAL tower in the 3x3 shape
Definition: MuonEnergy.h:30
void setCombinedQuality(const MuonQuality &combinedQuality)
set energy deposition information
Definition: Muon.h:123
std::vector< MuonChamberMatch > & matches()
get muon matching information
Definition: Muon.h:144
const StringCutObjectSelector< pat::Muon > slimMatches_
math::XYZPoint tkKink_position
Kink position for the tracker stub and global track.
Definition: MuonQuality.h:32
std::vector< Muon > MuonCollection
Definition: Muon.h:33
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:39
HLT enums.
void embedCaloMETMuonCorrs(const reco::MuonMETCorrectionData &t)
std::vector< edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > > pf2pc_
virtual void beginLuminosityBlock(const edm::LuminosityBlock &, const edm::EventSetup &) override final
bool isPFMuon() const
Definition: Muon.h:229
virtual void setPFP4(const reco::Candidate::LorentzVector &p4_)
float hcal_timeError
Definition: MuonEnergy.h:40
const StringCutObjectSelector< pat::Muon > saveTeVMuons_
const StringCutObjectSelector< pat::Muon > slimCaloMETCorr_
void embedPickyMuon()
embed reference to the above picky Track
math::XYZPointF ecal_position
Trajectory position at the calorimeter.
Definition: MuonEnergy.h:43
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21
Analysis-level muon class.
Definition: Muon.h:49
edm::Ptr< reco::Candidate > refToOrig_
Definition: PATObject.h:421
float hadS9
energy deposited in 3x3 HCAL tower shape around central tower
Definition: MuonEnergy.h:28
def move(src, dest)
Definition: eostools.py:510
reco::MuonMETCorrectionData caloMETMuonCorrs() const
muon MET corrections for caloMET; returns the muon correction struct if embedded during pat tuple pro...
Definition: Muon.h:103