35 std::vector<edm::EDGetTokenT<reco::PFCandidateCollection>>
pf_;
36 std::vector<edm::EDGetTokenT<edm::Association<pat::PackedCandidateCollection>>>
pf2pc_;
42 std::vector<edm::EDGetTokenT<edm::Association<reco::TrackExtraCollection>>>
trackExtraAssocs_;
61 const std::vector<edm::InputTag> &
pf = iConfig.
getParameter<std::vector<edm::InputTag>>(
"pfCandidates");
62 const std::vector<edm::InputTag> &pf2pc = iConfig.
getParameter<std::vector<edm::InputTag>>(
"packedPFCandidates");
63 if (pf.size() != pf2pc.size())
64 throw cms::Exception(
"Configuration") <<
"Mismatching pfCandidates and packedPFCandidates\n";
66 pf_.push_back(consumes<reco::PFCandidateCollection>(
tag));
73 muonModifier_ = std::make_unique<pat::ObjectModifier<pat::Muon>>(mod_config, consumesCollector());
75 produces<std::vector<pat::Muon>>();
77 produces<DTRecSegment4DCollection>();
78 produces<CSCSegmentCollection>();
82 std::vector<edm::InputTag> trackExtraAssocTags = iConfig.
getParameter<std::vector<edm::InputTag>>(
"trackExtraAssocs");
100 auto out = std::make_unique<std::vector<pat::Muon>>();
101 out->reserve(src->size());
103 auto outDTSegments = std::make_unique<DTRecSegment4DCollection>();
104 std::set<DTRecSegment4DRef> dtSegmentsRefs;
105 auto outCSCSegments = std::make_unique<CSCSegmentCollection>();
106 std::set<CSCSegmentRef> cscSegmentsRefs;
112 std::map<reco::CandidatePtr, pat::PackedCandidateRef> mu2pc;
116 for (
unsigned int ipfh = 0, npfh =
pf_.size(); ipfh < npfh; ++ipfh) {
119 const auto &pfcoll = (*pf);
120 const auto &pfmap = (*pf2pc);
121 for (
unsigned int i = 0,
n = pf->size();
i <
n; ++
i) {
134 for (vector<pat::Muon>::const_iterator it = src->begin(), ed = src->end(); it != ed; ++it) {
162 ene.
tower = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
tower);
164 ene.
towerS9 = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
towerS9);
166 ene.
had = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
had);
168 ene.
hadS9 = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
hadS9);
170 ene.
hadMax = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
hadMax);
172 ene.
em = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
em);
174 ene.
emS25 = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
emS25);
176 ene.
emMax = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
emMax);
186 MiniFloatConverter::reduceMantissaToNbitsRounding<14>(ene.
ecal_position.Y()),
187 MiniFloatConverter::reduceMantissaToNbitsRounding<14>(ene.
ecal_position.Z()));
189 MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
hcal_position.Y()),
190 MiniFloatConverter::reduceMantissaToNbitsRounding<12>(ene.
hcal_position.Z()));
197 MiniFloatConverter::reduceMantissaToNbitsRounding<12>(qual.
tkKink_position.Y()),
198 MiniFloatConverter::reduceMantissaToNbitsRounding<12>(qual.
tkKink_position.Z()));
204 MiniFloatConverter::reduceMantissaToNbitsRounding<10>(corrs.
corrX()),
205 MiniFloatConverter::reduceMantissaToNbitsRounding<10>(corrs.
corrY()));
210 cmatch.edgeX = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.edgeX);
211 cmatch.edgeY = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.edgeY);
212 cmatch.xErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.xErr);
213 cmatch.yErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.yErr);
214 cmatch.dXdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.dXdZErr);
215 cmatch.dYdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(cmatch.dYdZErr);
217 smatch.
xErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.
xErr);
218 smatch.
yErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.
yErr);
219 smatch.
dXdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.
dXdZErr);
220 smatch.
dYdZErr = MiniFloatConverter::reduceMantissaToNbitsRounding<12>(smatch.
dYdZErr);
235 std::map<DTRecSegment4DRef, size_t> dtMap;
236 std::vector<DTRecSegment4D> outDTSegmentsTmp;
237 std::map<CSCSegmentRef, size_t> cscMap;
238 std::vector<CSCSegment> outCSCSegmentsTmp;
239 for (
auto &seg : dtSegmentsRefs) {
240 dtMap[seg] = outDTSegments->size();
241 outDTSegmentsTmp.push_back(*seg);
243 for (
auto &seg : cscSegmentsRefs) {
244 cscMap[seg] = outCSCSegments->size();
245 outCSCSegmentsTmp.push_back(*seg);
247 outDTSegments->put(
DTChamberId(), outDTSegmentsTmp.begin(), outDTSegmentsTmp.end());
248 outCSCSegments->put(
CSCDetId(), outCSCSegmentsTmp.begin(), outCSCSegmentsTmp.end());
251 for (
auto &
mu : *
out) {
252 if (
mu.isMatchesValid()) {
const edm::EDGetTokenT< pat::MuonCollection > src_
T getParameter(std::string const &) const
void embedDytMuon()
embed reference to the above dyt Track
DTRecSegment4DRef dtSegmentRef
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
const StringCutObjectSelector< pat::Muon > dropDirectionalIso_
const StringCutObjectSelector< pat::Muon > slimKinkVars_
bool isNonnull() const
Checks for non-null.
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)
PATMuonSlimmer(const edm::ParameterSet &iConfig)
CSCSegmentRef cscSegmentRef
bool getByToken(EDGetToken token, Handle< PROD > &result) const
const bool linkToPackedPF_
std::vector< edm::EDGetTokenT< reco::PFCandidateCollection > > pf_
bool isMatchesValid() const
const StringCutObjectSelector< pat::Muon > slimCaloVars_
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< float > > XYZPointF
point in space with cartesian internal representation
void setCalEnergy(const MuonEnergy &calEnergy)
set energy deposition information
std::unique_ptr< pat::ObjectModifier< pat::Muon > > muonModifier_
float towerS9
total energy in 3x3 tower shape
float ecal_time
Calorimeter timing.
const StringCutObjectSelector< pat::Muon > segmentsMuonSelection_
#define DEFINE_FWK_MODULE(type)
float emS25
energy deposited in 5x5 ECAL crystal shape around central crystal
~PATMuonSlimmer() override
MuonQuality combinedQuality() const
get energy deposition information
void setPFIsolation(const std::string &label, const reco::MuonPFIsolation &deposit)
bool isQualityValid() const
math::XYZPointF hcal_position
bool isEnergyValid() const
reco::MuonRef muonRef() const
MuonEnergy calEnergy() const
get energy deposition information
float emMax
maximal energy of ECAL crystal in the 5x5 shape
const StringCutObjectSelector< pat::Muon > dropPfP4_
float hadMax
maximal energy of HCAL tower in the 3x3 shape
std::vector< edm::EDGetTokenT< edm::Association< reco::TrackExtraCollection > > > trackExtraAssocs_
void rekeyEmbeddedTracks(std::vector< edm::Handle< edm::Association< reco::TrackExtraCollection >>> const &assocs)
void setCombinedQuality(const MuonQuality &combinedQuality)
set energy deposition information
std::vector< MuonChamberMatch > & matches()
get muon matching information
const StringCutObjectSelector< pat::Muon > slimMatches_
void beginLuminosityBlock(const edm::LuminosityBlock &, const edm::EventSetup &) final
math::XYZPoint tkKink_position
Kink position for the tracker stub and global track.
std::vector< Muon > MuonCollection
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
Particle reconstructed by the particle flow algorithm.
void embedCaloMETMuonCorrs(const reco::MuonMETCorrectionData &t)
std::vector< edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > > pf2pc_
virtual void setPFP4(const reco::Candidate::LorentzVector &p4_)
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.
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Analysis-level muon class.
edm::Ptr< reco::Candidate > refToOrig_
float hadS9
energy deposited in 3x3 HCAL tower shape around central tower
reco::MuonMETCorrectionData caloMETMuonCorrs() const
muon MET corrections for caloMET; returns the muon correction struct if embedded during pat tuple pro...