CMS 3D CMS Logo

AlignmentGlobalTrackSelector.cc
Go to the documentation of this file.
1 //Framework
6 
7 //DataFormats
12 
14 
15 #include <DataFormats/RecoCandidate/interface/RecoCandidate.h> //for the get<TrackRef>() Call
16 
18 
19 //STL
20 #include <cmath>
21 
23 
24 using namespace std;
25 using namespace edm;
26 
27 // constructor ----------------------------------------------------------------
29  : theGMFilterSwitch(cfg.getParameter<bool>("applyGlobalMuonFilter")),
30  theIsoFilterSwitch(cfg.getParameter<bool>("applyIsolationtest")),
31  theJetCountFilterSwitch(cfg.getParameter<bool>("applyJetCountFilter")) {
33  LogDebug("Alignment") << "> applying global Trackfilter ...";
34 
35  if (theGMFilterSwitch) {
36  edm::InputTag theMuonSource = cfg.getParameter<InputTag>("muonSource");
37  theMuonToken = iC.consumes<reco::MuonCollection>(theMuonSource);
38  theMaxTrackDeltaR = cfg.getParameter<double>("maxTrackDeltaR");
39  theMinGlobalMuonCount = cfg.getParameter<int>("minGlobalMuonCount");
40  LogDebug("Alignment") << "> GlobalMuonFilter : source, maxTrackDeltaR, min. Count : " << theMuonSource
41  << " , " << theMaxTrackDeltaR << " , " << theMinIsolatedCount;
42  }
43 
44  if (theIsoFilterSwitch) {
45  edm::InputTag theJetIsoSource = cfg.getParameter<InputTag>("jetIsoSource");
46  theJetIsoToken = iC.consumes<reco::CaloJetCollection>(theJetIsoSource);
47  theMaxJetPt = cfg.getParameter<double>("maxJetPt");
48  theMinJetDeltaR = cfg.getParameter<double>("minJetDeltaR");
49  theMinIsolatedCount = cfg.getParameter<int>("minIsolatedCount");
50  LogDebug("Alignment") << "> Isolationtest : source, maxJetPt, minJetDeltaR, min. Count: " << theJetIsoSource
51  << " , " << theMaxJetPt << " ," << theMinJetDeltaR << " ," << theMinGlobalMuonCount;
52  }
53 
55  edm::InputTag theJetCountSource = cfg.getParameter<InputTag>("jetCountSource");
56  theJetCountToken = iC.consumes<reco::CaloJetCollection>(theJetCountSource);
57  theMinJetPt = cfg.getParameter<double>("minJetPt");
58  theMaxJetCount = cfg.getParameter<int>("maxJetCount");
59  LogDebug("Alignment") << "> JetCountFilter : source, minJetPt, maxJetCount : " << theJetCountSource
60  << " , " << theMinJetPt << " ," << theMaxJetCount;
61  }
62 }
63 
64 // destructor -----------------------------------------------------------------
66 
70 }
71 
72 // do selection ---------------------------------------------------------------
74  const edm::Event& iEvent,
75  const edm::EventSetup& iSetup) {
77 
84  LogDebug("Alignment") << "> Global: tracks all, kept: " << tracks.size() << ", " << result.size();
85  // LogDebug("Alignment")<<"> o kept:";
86  // printTracks(result);
87 
88  return result;
89 }
90 
93  const edm::Event& iEvent) const {
94  Tracks result;
96 
97  //fill globalMuons with muons
99  iEvent.getByToken(theMuonToken, muons);
100 
101  if (muons.isValid()) {
102  for (reco::MuonCollection::const_iterator itMuon = muons->begin(); itMuon != muons->end(); ++itMuon) {
103  const reco::Track* muonTrack = (*itMuon).get<reco::TrackRef>().get();
104  if (!muonTrack) {
105  LogDebug("Alignment") << "@SUB=AlignmentGlobalTrackSelector::findMuons"
106  << "Found muon without track: Standalone Muon!";
107  } else {
108  globalMuons.push_back(muonTrack);
109  }
110  }
111  } else {
112  LogError("Alignment") << "@SUB=AlignmentGlobalTrackSelector::findMuons"
113  << "> could not optain mounCollection!";
114  }
115 
116  result = this->matchTracks(tracks, globalMuons);
117 
118  if (static_cast<int>(result.size()) < theMinGlobalMuonCount)
119  result.clear();
120 
121  return result;
122 }
123 
126  const edm::Event& iEvent) const {
127  Tracks result;
128  result.clear();
129 
131  iEvent.getByToken(theJetIsoToken, jets);
132 
133  if (jets.isValid()) {
134  for (Tracks::const_iterator it = cands.begin(); it != cands.end(); ++it) {
135  bool isolated = true;
136  for (reco::CaloJetCollection::const_iterator itJet = jets->begin(); itJet != jets->end(); ++itJet)
137  isolated &= !((*itJet).pt() > theMaxJetPt && deltaR(*(*it), (*itJet)) < theMinJetDeltaR);
138 
139  if (isolated)
140  result.push_back(*it);
141  }
142  // LogDebug("Alignment") << "D Found "<<result.size()<<" isolated of "<< cands.size()<<" Tracks!";
143 
144  } else
145  LogError("Alignment") << "@SUB=AlignmentGlobalTrackSelector::checkIsolation"
146  << "> could not optain jetCollection!";
147 
148  if (static_cast<int>(result.size()) < theMinIsolatedCount)
149  result.clear();
150 
151  return result;
152 }
153 
156  const edm::Event& iEvent) const {
157  Tracks result;
158  result.clear();
159 
161  iEvent.getByToken(theJetCountToken, jets);
162 
163  if (jets.isValid()) {
164  int jetCount = 0;
165  for (reco::CaloJetCollection::const_iterator itJet = jets->begin(); itJet != jets->end(); ++itJet) {
166  if ((*itJet).pt() > theMinJetPt)
167  jetCount++;
168  }
169 
170  if (jetCount <= theMaxJetCount)
171  result = tracks;
172 
173  LogDebug("Alignment") << "> found " << jetCount << " Jets";
174  } else
175  LogError("Alignment") << "@SUB=AlignmentGlobalTrackSelector::checkJetCount"
176  << "> could not optain jetCollection!";
177 
178  return result;
179 }
180 
181 //===================HELPERS===================
182 
185  const Tracks& comp) const {
186  Tracks result;
187  for (Tracks::const_iterator itComp = comp.begin(); itComp != comp.end(); ++itComp) {
188  int match = -1;
189  double min = theMaxTrackDeltaR;
190  for (unsigned int i = 0; i < src.size(); i++) {
191  // LogDebug("Alignment") << "> Trackmatch dist: "<<deltaR(src.at(i),*itComp);
192  if (min > deltaR(*(src.at(i)), *(*itComp))) {
193  min = deltaR(*(src.at(i)), *(*itComp));
194  match = static_cast<int>(i);
195  }
196  }
197  if (match > -1)
198  result.push_back(src.at(match));
199  }
200  return result;
201 }
202 
205  int count = 0;
206  LogDebug("Alignment") << ">......................................";
207  for (Tracks::const_iterator it = col.begin(); it < col.end(); ++it, ++count) {
208  LogDebug("Alignment") << "> Track No. " << count << ": p = (" << (*it)->px() << "," << (*it)->py() << ","
209  << (*it)->pz() << ")\n"
210  << "> pT = " << (*it)->pt() << " eta = " << (*it)->eta()
211  << " charge = " << (*it)->charge();
212  }
213  LogDebug("Alignment") << ">......................................";
214 }
AlignmentGlobalTrackSelector::theIsoFilterSwitch
bool theIsoFilterSwitch
Definition: AlignmentGlobalTrackSelector.h:50
PDWG_BPHSkim_cff.muons
muons
Definition: PDWG_BPHSkim_cff.py:47
PDWG_EXOHSCP_cff.tracks
tracks
Definition: PDWG_EXOHSCP_cff.py:28
CaloJet.h
electrons_cff.bool
bool
Definition: electrons_cff.py:372
mps_fire.i
i
Definition: mps_fire.py:355
Muon.h
GlobalTrackerMuonAlignment_cfi.isolated
isolated
Definition: GlobalTrackerMuonAlignment_cfi.py:4
MessageLogger.h
AlignmentGlobalTrackSelector::theMuonToken
edm::EDGetTokenT< reco::MuonCollection > theMuonToken
Definition: AlignmentGlobalTrackSelector.h:54
AlignmentGlobalTrackSelector::matchTracks
Tracks matchTracks(const Tracks &src, const Tracks &comp) const
matches [src] with [comp] returns collection with matching Tracks coming from [src]
Definition: AlignmentGlobalTrackSelector.cc:184
min
T min(T a, T b)
Definition: MathUtil.h:58
edm
HLT enums.
Definition: AlignableModifier.h:19
cuy.col
col
Definition: cuy.py:1010
AlignmentGlobalTrackSelector::checkIsolation
Tracks checkIsolation(const Tracks &cands, const edm::Event &iEvent) const
returns only isolated tracks in [cands]
Definition: AlignmentGlobalTrackSelector.cc:125
singleTopDQM_cfi.jets
jets
Definition: singleTopDQM_cfi.py:42
AlignmentGlobalTrackSelector::theMinGlobalMuonCount
int theMinGlobalMuonCount
Definition: AlignmentGlobalTrackSelector.h:56
edm::Handle< reco::MuonCollection >
RecoCandidate.h
AlCaHLTBitMon_QueryRunRegistry.comp
comp
Definition: AlCaHLTBitMon_QueryRunRegistry.py:249
edm::Ref< TrackCollection >
AlignmentGlobalTrackSelector::printTracks
void printTracks(const Tracks &col) const
print Information on Track-Collection
Definition: AlignmentGlobalTrackSelector.cc:204
deltaR.h
EDMException.h
Track.h
reco::MuonCollection
std::vector< Muon > MuonCollection
collection of Muon objects
Definition: MuonFwd.h:9
AlignmentGlobalTrackSelector::checkJetCount
Tracks checkJetCount(const Tracks &cands, const edm::Event &iEvent) const
returns [tracks] if there are less than theMaxCount Jets with theMinJetPt and an empty set if not
Definition: AlignmentGlobalTrackSelector.cc:155
reco::Track
Definition: Track.h:27
AlignmentGlobalTrackSelector::theJetIsoToken
edm::EDGetTokenT< reco::CaloJetCollection > theJetIsoToken
Definition: AlignmentGlobalTrackSelector.h:59
Particle.h
edm::ConsumesCollector::consumes
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: ConsumesCollector.h:49
PbPb_ZMuSkimMuonDPG_cff.deltaR
deltaR
Definition: PbPb_ZMuSkimMuonDPG_cff.py:63
AlignmentGlobalTrackSelector::useThisFilter
bool useThisFilter()
returns if any of the Filters is used.
Definition: AlignmentGlobalTrackSelector.cc:68
AlignmentGlobalTrackSelector::theMinJetDeltaR
double theMinJetDeltaR
Definition: AlignmentGlobalTrackSelector.h:61
AlignmentGlobalTrackSelector::AlignmentGlobalTrackSelector
AlignmentGlobalTrackSelector(const edm::ParameterSet &cfg, edm::ConsumesCollector &iC)
constructor
Definition: AlignmentGlobalTrackSelector.cc:28
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:670
edm::ParameterSet
Definition: ParameterSet.h:36
edm::LogError
Definition: MessageLogger.h:183
AlignmentGlobalTrackSelector::theMaxJetCount
int theMaxJetCount
Definition: AlignmentGlobalTrackSelector.h:67
TrackRefitter_38T_cff.src
src
Definition: TrackRefitter_38T_cff.py:24
Event.h
KineDebug3::count
void count()
Definition: KinematicConstrainedVertexUpdatorT.h:21
AlignmentGlobalTrackSelector::theGMFilterSwitch
bool theGMFilterSwitch
Definition: AlignmentGlobalTrackSelector.h:49
AlignmentGlobalTrackSelector::theMaxTrackDeltaR
double theMaxTrackDeltaR
Definition: AlignmentGlobalTrackSelector.h:55
match
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
AlignmentGlobalTrackSelector::theMinJetPt
double theMinJetPt
Definition: AlignmentGlobalTrackSelector.h:66
iEvent
int iEvent
Definition: GenABIO.cc:224
reco::CaloJetCollection
std::vector< CaloJet > CaloJetCollection
collection of CaloJet objects
Definition: CaloJetCollection.h:15
AlignmentGlobalTrackSelector::theMaxJetPt
double theMaxJetPt
Definition: AlignmentGlobalTrackSelector.h:60
edm::EventSetup
Definition: EventSetup.h:57
get
#define get
InputTag.h
looper.cfg
cfg
Definition: looper.py:297
AlignmentGlobalTrackSelector::Tracks
std::vector< const reco::Track * > Tracks
Definition: AlignmentGlobalTrackSelector.h:24
AlignmentGlobalTrackSelector::findMuons
Tracks findMuons(const Tracks &tracks, const edm::Event &iEvent) const
filter for Tracks that match the Track of a global Muon
Definition: AlignmentGlobalTrackSelector.cc:92
std
Definition: JetResolutionObject.h:76
AlignmentGlobalTrackSelector.h
HLT_2018_cff.cands
cands
Definition: HLT_2018_cff.py:13762
AlignmentGlobalTrackSelector::theJetCountToken
edm::EDGetTokenT< reco::CaloJetCollection > theJetCountToken
Definition: AlignmentGlobalTrackSelector.h:65
mps_fire.result
result
Definition: mps_fire.py:303
Candidate.h
AlignmentGlobalTrackSelector::select
Tracks select(const Tracks &tracks, const edm::Event &iEvent, const edm::EventSetup &eSetup)
select tracks
Definition: AlignmentGlobalTrackSelector.cc:73
AlignmentGlobalTrackSelector::theMinIsolatedCount
int theMinIsolatedCount
Definition: AlignmentGlobalTrackSelector.h:62
edm::Event
Definition: Event.h:73
globalMuons_cfi.globalMuons
globalMuons
Definition: globalMuons_cfi.py:6
edm::InputTag
Definition: InputTag.h:15
edm::ConsumesCollector
Definition: ConsumesCollector.h:39
AlignmentGlobalTrackSelector::theJetCountFilterSwitch
bool theJetCountFilterSwitch
Definition: AlignmentGlobalTrackSelector.h:51
AlignmentGlobalTrackSelector::~AlignmentGlobalTrackSelector
~AlignmentGlobalTrackSelector()
destructor
Definition: AlignmentGlobalTrackSelector.cc:65