CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
MuonRecoOneHLT Class Reference

#include <MuonRecoOneHLT.h>

Inheritance diagram for MuonRecoOneHLT:
MuonAnalyzerBase

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &, const edm::TriggerResults &)
 Get the analysis. More...
 
void beginJob (DQMStore *dbe)
 Inizialize parameters for histo binning. More...
 
void beginRun (const edm::Run &iRun, const edm::EventSetup &iSetup)
 
 MuonRecoOneHLT (const edm::ParameterSet &, MuonServiceProxy *theService)
 Constructor. More...
 
virtual ~MuonRecoOneHLT ()
 Destructor. More...
 
- Public Member Functions inherited from MuonAnalyzerBase
void analyze (const edm::Event &, const edm::EventSetup &, reco::Muon &recoMuon)
 Get the analysis of the muon properties. More...
 
void analyze (const edm::Event &, const edm::EventSetup &, reco::Track &recoTrack)
 Get the analysis of the muon track properties. More...
 
 MuonAnalyzerBase (MuonServiceProxy *theServ)
 Constructor. More...
 
MuonServiceProxyservice ()
 
virtual ~MuonAnalyzerBase ()
 Destructor. More...
 

Private Attributes

GenericTriggerEventFlag_DoubleMuonEventFlag
 
GenericTriggerEventFlag_SingleMuonEventFlag
 
int chi2Bin
 
float chi2Max
 
float chi2Min
 
std::vector< MonitorElement * > chi2OvDFGlbTrack
 
MonitorElementchi2OvDFStaTrack
 
MonitorElementchi2OvDFTight
 
MonitorElementchi2OvDFTrack
 
std::vector< std::string > doublemuonExpr_
 
int etaBin
 
std::vector< MonitorElement * > etaGlbTrack
 
float etaMax
 
float etaMin
 
MonitorElementetaStaTrack
 
MonitorElementetaTight
 
MonitorElementetaTrack
 
std::string metname
 
MonitorElementmuReco
 
edm::ParameterSet parameters
 
int phiBin
 
std::vector< MonitorElement * > phiGlbTrack
 
float phiMax
 
float phiMin
 
MonitorElementphiStaTrack
 
MonitorElementphiTight
 
MonitorElementphiTrack
 
int ptBin
 
std::vector< MonitorElement * > ptGlbTrack
 
float ptMax
 
float ptMin
 
MonitorElementptStaTrack
 
MonitorElementptTight
 
MonitorElementptTrack
 
std::vector< std::string > singlemuonExpr_
 
edm::InputTag theMuonCollectionLabel
 
edm::InputTag theSTACollectionLabel
 

Detailed Description

Definition at line 25 of file MuonRecoOneHLT.h.

Constructor & Destructor Documentation

MuonRecoOneHLT::MuonRecoOneHLT ( const edm::ParameterSet pSet,
MuonServiceProxy theService 
)

Constructor.

Definition at line 24 of file MuonRecoOneHLT.cc.

References _DoubleMuonEventFlag, _SingleMuonEventFlag, doublemuonExpr_, edm::ParameterSet::getParameter(), parameters, and singlemuonExpr_.

25  parameters = pSet;
26 
27  ParameterSet muonparms = parameters.getParameter<edm::ParameterSet>("SingleMuonTrigger");
28  ParameterSet dimuonparms = parameters.getParameter<edm::ParameterSet>("DoubleMuonTrigger");
30  _DoubleMuonEventFlag = new GenericTriggerEventFlag( dimuonparms );
31 
32  // Trigger Expresions in case de connection to the DB fails
33  singlemuonExpr_ = muonparms.getParameter<std::vector<std::string> >("hltPaths");
34  doublemuonExpr_ = dimuonparms.getParameter<std::vector<std::string> >("hltPaths");
35 }
T getParameter(std::string const &) const
edm::ParameterSet parameters
MuonServiceProxy * theService
GenericTriggerEventFlag * _DoubleMuonEventFlag
GenericTriggerEventFlag * _SingleMuonEventFlag
Provides a code based selection for trigger and DCS information in order to have no failing filters i...
MuonAnalyzerBase(MuonServiceProxy *theServ)
Constructor.
std::vector< std::string > doublemuonExpr_
std::vector< std::string > singlemuonExpr_
MuonRecoOneHLT::~MuonRecoOneHLT ( )
virtual

Destructor.

Definition at line 38 of file MuonRecoOneHLT.cc.

References _DoubleMuonEventFlag, and _SingleMuonEventFlag.

38  {
39  delete _SingleMuonEventFlag;
40  delete _DoubleMuonEventFlag;
41 }
GenericTriggerEventFlag * _DoubleMuonEventFlag
GenericTriggerEventFlag * _SingleMuonEventFlag

Member Function Documentation

void MuonRecoOneHLT::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup,
const edm::TriggerResults triggerResults 
)

Get the analysis.

Definition at line 129 of file MuonRecoOneHLT.cc.

References edm::HLTGlobalStatus::accept(), SiPixelRawToDigiRegional_cfi::beamSpot, chi2OvDFGlbTrack, chi2OvDFStaTrack, chi2OvDFTight, chi2OvDFTrack, gather_cfg::cout, doublemuonExpr_, etaGlbTrack, etaStaTrack, etaTight, etaTrack, MonitorElement::Fill(), edm::Event::getByLabel(), i, LogTrace, metname, patZpeak::muons, muReco, phiGlbTrack, phiStaTrack, phiTight, phiTrack, reco::BeamSpot::position(), ptGlbTrack, ptStaTrack, ptTight, ptTrack, singlemuonExpr_, edm::TriggerNames::size(), theMuonCollectionLabel, edm::TriggerNames::triggerName(), and edm::Event::triggerNames().

131  {
132 #ifdef DEBUG
133  cout << "[MuonRecoOneHLT] analyze "<< endl;
134 #endif
135 
136  // TEST FOR ONLY TAKE HIGHEST PT MUON
138  iEvent.getByLabel(theMuonCollectionLabel,muons);
139 
140 
141  std::map<float,reco::Muon> muonMap;
142  for (reco::MuonCollection::const_iterator recoMu = muons->begin(); recoMu!=muons->end(); ++recoMu){
143  muonMap[recoMu->pt()] = *recoMu;
144  }
145  std::vector<reco::Muon> LeadingMuon;
146  for( std::map<float,reco::Muon>::reverse_iterator rit=muonMap.rbegin(); rit!=muonMap.rend(); ++rit){
147  LeadingMuon.push_back( (*rit).second );
148  }
149 
151  Handle<reco::BeamSpot> beamSpotHandle;
152  iEvent.getByLabel("offlineBeamSpot", beamSpotHandle);
153  beamSpot = *beamSpotHandle;
154 
155  const edm::TriggerNames& triggerNames = iEvent.triggerNames(triggerResults);
156  const unsigned int nTrig(triggerNames.size());
157  bool _trig_SingleMu = false;
158  bool _trig_DoubleMu = false;
159  for (unsigned int i=0;i<nTrig;++i){
160  if (triggerNames.triggerName(i).find(singlemuonExpr_[0].substr(0,singlemuonExpr_[0].rfind("_v")+2))!=std::string::npos && triggerResults.accept(i))
161  _trig_SingleMu = true;
162  if (triggerNames.triggerName(i).find(doublemuonExpr_[0].substr(0,doublemuonExpr_[0].rfind("_v")+2))!=std::string::npos && triggerResults.accept(i))
163  _trig_DoubleMu = true;
164  }
165 #ifdef DEBUG
166  cout << "[MuonRecoOneHLT] Trigger Fired ? "<< _trig_SingleMu << endl;
167 #endif
168 
169  if (!_trig_SingleMu && !_trig_DoubleMu) return;
170  if (LeadingMuon.size() == 0) return;
171  // if (_MuonEventFlag->on() && !(_MuonEventFlag->accept(iEvent,iSetup))) return;
172 
173  // Check if Muon is Global
174  if(LeadingMuon[0].isGlobalMuon()) {
175  LogTrace(metname)<<"[MuonRecoOneHLT] The mu is global - filling the histos";
176  if(LeadingMuon[0].isTrackerMuon() && LeadingMuon[0].isStandAloneMuon()) muReco->Fill(1);
177  if(!(LeadingMuon[0].isTrackerMuon()) && LeadingMuon[0].isStandAloneMuon()) muReco->Fill(2);
178  if(!LeadingMuon[0].isStandAloneMuon())
179  LogTrace(metname)<<"[MuonRecoOneHLT] ERROR: the mu is global but not standalone!";
180 
181  // get the track combinig the information from both the Tracker and the Spectrometer
182  reco::TrackRef recoCombinedGlbTrack = LeadingMuon[0].combinedMuon();
183  // get the track using only the tracker data
184  reco::TrackRef recoTkGlbTrack = LeadingMuon[0].track();
185  // get the track using only the mu spectrometer data
186  reco::TrackRef recoStaGlbTrack = LeadingMuon[0].standAloneMuon();
187 
188  etaGlbTrack[0]->Fill(recoCombinedGlbTrack->eta());
189  etaGlbTrack[1]->Fill(recoTkGlbTrack->eta());
190  etaGlbTrack[2]->Fill(recoStaGlbTrack->eta());
191 
192  phiGlbTrack[0]->Fill(recoCombinedGlbTrack->phi());
193  phiGlbTrack[1]->Fill(recoTkGlbTrack->phi());
194  phiGlbTrack[2]->Fill(recoStaGlbTrack->phi());
195 
196  chi2OvDFGlbTrack[0]->Fill(recoCombinedGlbTrack->normalizedChi2());
197  chi2OvDFGlbTrack[1]->Fill(recoTkGlbTrack->normalizedChi2());
198  chi2OvDFGlbTrack[2]->Fill(recoStaGlbTrack->normalizedChi2());
199 
200  ptGlbTrack[0]->Fill(recoCombinedGlbTrack->pt());
201  ptGlbTrack[1]->Fill(recoTkGlbTrack->pt());
202  ptGlbTrack[2]->Fill(recoStaGlbTrack->pt());
203  }
204  // Check if Muon is Tight
205  if (LeadingMuon[0].isGlobalMuon() &&
206  LeadingMuon[0].isTrackerMuon() &&
207  LeadingMuon[0].combinedMuon()->normalizedChi2()<10. &&
208  LeadingMuon[0].combinedMuon()->hitPattern().numberOfValidMuonHits()>0 &&
209  fabs(LeadingMuon[0].combinedMuon()->dxy(beamSpot.position()))<0.2 &&
210  LeadingMuon[0].combinedMuon()->hitPattern().numberOfValidPixelHits()>0 &&
211  LeadingMuon[0].numberOfMatches() > 1){
212 
213  LogTrace(metname)<<"[MuonRecoOneHLT] The mu is tracker only - filling the histos";
214 
215  reco::TrackRef recoCombinedGlbTrack = LeadingMuon[0].combinedMuon();
216 
217  etaTight->Fill(recoCombinedGlbTrack->eta());
218  phiTight->Fill(recoCombinedGlbTrack->phi());
219  chi2OvDFTight->Fill(recoCombinedGlbTrack->normalizedChi2());
220  ptTight->Fill(recoCombinedGlbTrack->pt());
221  }
222 
223  // Check if Muon is Tracker but NOT Global
224  if(LeadingMuon[0].isTrackerMuon() && !(LeadingMuon[0].isGlobalMuon())) {
225  LogTrace(metname)<<"[MuonRecoOneHLT] The mu is tracker only - filling the histos";
226  if(LeadingMuon[0].isStandAloneMuon()) muReco->Fill(3);
227  if(!(LeadingMuon[0].isStandAloneMuon())) muReco->Fill(4);
228 
229  // get the track using only the tracker data
230  reco::TrackRef recoTrack = LeadingMuon[0].track();
231 
232  etaTrack->Fill(recoTrack->eta());
233  phiTrack->Fill(recoTrack->phi());
234  chi2OvDFTrack->Fill(recoTrack->normalizedChi2());
235  ptTrack->Fill(recoTrack->pt());
236  }
237 
238  // Check if Muon is STA but NOT Global
239  if(LeadingMuon[0].isStandAloneMuon() && !(LeadingMuon[0].isGlobalMuon())) {
240  LogTrace(metname)<<"[MuonRecoOneHLT] The mu is STA only - filling the histos";
241  if(!(LeadingMuon[0].isTrackerMuon())) muReco->Fill(5);
242 
243  // get the track using only the mu spectrometer data
244  reco::TrackRef recoStaTrack = LeadingMuon[0].standAloneMuon();
245 
246  etaStaTrack->Fill(recoStaTrack->eta());
247  phiStaTrack->Fill(recoStaTrack->phi());
248  chi2OvDFStaTrack->Fill(recoStaTrack->normalizedChi2());
249  ptStaTrack->Fill(recoStaTrack->pt());
250  }
251  // Check if Muon is Only CaloMuon
252  if(LeadingMuon[0].isCaloMuon() && !(LeadingMuon[0].isGlobalMuon()) && !(LeadingMuon[0].isTrackerMuon()) && !(LeadingMuon[0].isStandAloneMuon()))
253  muReco->Fill(6);
254 }
int i
Definition: DBlmapReader.cc:9
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
Definition: Event.cc:199
MonitorElement * phiTight
MonitorElement * ptTrack
MonitorElement * chi2OvDFTrack
bool accept() const
Has at least one path accepted the event?
Strings::size_type size() const
Definition: TriggerNames.cc:39
MonitorElement * etaTight
MonitorElement * etaStaTrack
std::string metname
std::vector< std::string > doublemuonExpr_
void Fill(long long x)
MonitorElement * chi2OvDFStaTrack
edm::InputTag theMuonCollectionLabel
std::vector< MonitorElement * > phiGlbTrack
MonitorElement * ptStaTrack
std::vector< std::string > singlemuonExpr_
std::vector< MonitorElement * > ptGlbTrack
MonitorElement * etaTrack
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
#define LogTrace(id)
std::vector< MonitorElement * > etaGlbTrack
MonitorElement * phiTrack
MonitorElement * ptTight
std::string const & triggerName(unsigned int index) const
Definition: TriggerNames.cc:27
tuple muons
Definition: patZpeak.py:38
MonitorElement * phiStaTrack
tuple cout
Definition: gather_cfg.py:121
const Point & position() const
position
Definition: BeamSpot.h:63
MonitorElement * muReco
MonitorElement * chi2OvDFTight
std::vector< MonitorElement * > chi2OvDFGlbTrack
void MuonRecoOneHLT::beginJob ( DQMStore dbe)
virtual

Inizialize parameters for histo binning.

Implements MuonAnalyzerBase.

Definition at line 42 of file MuonRecoOneHLT.cc.

References DQMStore::book1D(), chi2Bin, chi2Max, chi2Min, chi2OvDFGlbTrack, chi2OvDFStaTrack, chi2OvDFTight, chi2OvDFTrack, gather_cfg::cout, etaBin, etaGlbTrack, etaMax, etaMin, etaStaTrack, etaTight, etaTrack, edm::ParameterSet::getParameter(), muReco, parameters, phiBin, phiGlbTrack, phiMax, phiMin, phiStaTrack, phiTight, phiTrack, ptBin, ptGlbTrack, ptMax, ptMin, ptStaTrack, ptTight, ptTrack, MonitorElement::setAxisTitle(), DQMStore::setCurrentFolder(), and theMuonCollectionLabel.

42  {
43 #ifdef DEBUG
44  cout << "[MuonRecoOneHLT] beginJob " << endl;
45 #endif
46  dbe->setCurrentFolder("Muons/MuonRecoOneHLT");
47 
49 
50  muReco = dbe->book1D("Muon_Reco", "Muon Reconstructed Tracks", 6, 1, 7);
51  muReco->setBinLabel(1,"glb+tk+sta");
52  muReco->setBinLabel(2,"glb+sta");
53  muReco->setBinLabel(3,"tk+sta");
54  muReco->setBinLabel(4,"tk");
55  muReco->setBinLabel(5,"sta");
56  muReco->setBinLabel(6,"calo");
57 
58  // monitoring of eta parameter
59  etaBin = parameters.getParameter<int>("etaBin");
60  etaMin = parameters.getParameter<double>("etaMin");
61  etaMax = parameters.getParameter<double>("etaMax");
62 
63  std::string histname = "GlbMuon_";
64  etaGlbTrack.push_back(dbe->book1D(histname+"Glb_eta", "#eta_{GLB}", etaBin, etaMin, etaMax));
65  etaGlbTrack.push_back(dbe->book1D(histname+"Tk_eta", "#eta_{TKfromGLB}", etaBin, etaMin, etaMax));
66  etaGlbTrack.push_back(dbe->book1D(histname+"Sta_eta", "#eta_{STAfromGLB}", etaBin, etaMin, etaMax));
67  etaTight = dbe->book1D("TightMuon_eta", "#eta_{GLB}", etaBin, etaMin, etaMax);
68  etaTrack = dbe->book1D("TkMuon_eta", "#eta_{TK}", etaBin, etaMin, etaMax);
69  etaStaTrack = dbe->book1D("StaMuon_eta", "#eta_{STA}", etaBin, etaMin, etaMax);
70 
71  // monitoring of phi paramater
72  phiBin = parameters.getParameter<int>("phiBin");
73  phiMin = parameters.getParameter<double>("phiMin");
74  phiMax = parameters.getParameter<double>("phiMax");
75  phiGlbTrack.push_back(dbe->book1D(histname+"Glb_phi", "#phi_{GLB}", phiBin, phiMin, phiMax));
76  phiGlbTrack[0]->setAxisTitle("rad");
77  phiGlbTrack.push_back(dbe->book1D(histname+"Tk_phi", "#phi_{TKfromGLB}", phiBin, phiMin, phiMax));
78  phiGlbTrack[1]->setAxisTitle("rad");
79  phiGlbTrack.push_back(dbe->book1D(histname+"Sta_phi", "#phi_{STAfromGLB}", phiBin, phiMin, phiMax));
80  phiGlbTrack[2]->setAxisTitle("rad");
81  phiTight = dbe->book1D("TightMuon_phi", "#phi_{GLB}", phiBin, phiMin, phiMax);
82  phiTrack = dbe->book1D("TkMuon_phi", "#phi_{TK}", phiBin, phiMin, phiMax);
83  phiTrack->setAxisTitle("rad");
84  phiStaTrack = dbe->book1D("StaMuon_phi", "#phi_{STA}", phiBin, phiMin, phiMax);
85  phiStaTrack->setAxisTitle("rad");
86 
87  // monitoring of the chi2 parameter
88  chi2Bin = parameters.getParameter<int>("chi2Bin");
89  chi2Min = parameters.getParameter<double>("chi2Min");
90  chi2Max = parameters.getParameter<double>("chi2Max");
91  chi2OvDFGlbTrack.push_back(dbe->book1D(histname+"Glb_chi2OverDf", "#chi_{2}OverDF_{GLB}", chi2Bin, chi2Min, chi2Max));
92  chi2OvDFGlbTrack.push_back(dbe->book1D(histname+"Tk_chi2OverDf", "#chi_{2}OverDF_{TKfromGLB}", phiBin, chi2Min, chi2Max));
93  chi2OvDFGlbTrack.push_back(dbe->book1D(histname+"Sta_chi2OverDf", "#chi_{2}OverDF_{STAfromGLB}", chi2Bin, chi2Min, chi2Max));
94  chi2OvDFTight = dbe->book1D("TightMuon_chi2OverDf", "#chi_{2}OverDF_{GLB}", chi2Bin, chi2Min, chi2Max);
95  chi2OvDFTrack = dbe->book1D("TkMuon_chi2OverDf", "#chi_{2}OverDF_{TK}", chi2Bin, chi2Min, chi2Max);
96  chi2OvDFStaTrack = dbe->book1D("StaMuon_chi2OverDf", "#chi_{2}OverDF_{STA}", chi2Bin, chi2Min, chi2Max);
97 
98  // monitoring of the transverse momentum
99  ptBin = parameters.getParameter<int>("ptBin");
100  ptMin = parameters.getParameter<double>("ptMin");
101  ptMax = parameters.getParameter<double>("ptMax");
102  ptGlbTrack.push_back(dbe->book1D(histname+"Glb_pt", "pt_{GLB}", ptBin, ptMin, ptMax));
103  ptGlbTrack[0]->setAxisTitle("GeV");
104  ptGlbTrack.push_back(dbe->book1D(histname+"Tk_pt", "pt_{TKfromGLB}", ptBin, ptMin, ptMax));
105  ptGlbTrack[1]->setAxisTitle("GeV");
106  ptGlbTrack.push_back(dbe->book1D(histname+"Sta_pt", "pt_{STAfromGLB}", ptBin, ptMin, ptMax));
107  ptGlbTrack[2]->setAxisTitle("GeV");
108  ptTight = dbe->book1D("TightMuon_pt", "pt_{GLB}", ptBin, ptMin, ptMax);
109  ptTight->setAxisTitle("GeV");
110  ptTrack = dbe->book1D("TkMuon_pt", "pt_{TK}", ptBin, ptMin, ptMax);
111  ptTrack->setAxisTitle("GeV");
112  ptStaTrack = dbe->book1D("StaMuon_pt", "pt_{STA}", ptBin, ptMin, ptMax);
113  ptStaTrack->setAxisTitle("GeV");
114 }
T getParameter(std::string const &) const
edm::ParameterSet parameters
MonitorElement * phiTight
MonitorElement * ptTrack
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:717
MonitorElement * chi2OvDFTrack
MonitorElement * etaTight
MonitorElement * etaStaTrack
MonitorElement * chi2OvDFStaTrack
edm::InputTag theMuonCollectionLabel
std::vector< MonitorElement * > phiGlbTrack
MonitorElement * ptStaTrack
std::vector< MonitorElement * > ptGlbTrack
MonitorElement * etaTrack
std::vector< MonitorElement * > etaGlbTrack
MonitorElement * phiTrack
MonitorElement * ptTight
MonitorElement * phiStaTrack
tuple cout
Definition: gather_cfg.py:121
MonitorElement * muReco
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
MonitorElement * chi2OvDFTight
std::vector< MonitorElement * > chi2OvDFGlbTrack
void MuonRecoOneHLT::beginRun ( const edm::Run iRun,
const edm::EventSetup iSetup 
)

Definition at line 116 of file MuonRecoOneHLT.cc.

References _DoubleMuonEventFlag, _SingleMuonEventFlag, gather_cfg::cout, GenericTriggerEventFlag::expressionsFromDB(), GenericTriggerEventFlag::hltDBKey(), GenericTriggerEventFlag::initRun(), GenericTriggerEventFlag::on(), and singlemuonExpr_.

116  {
117 #ifdef DEBUG
118  cout << "[MuonRecoOneHLT] beginRun " << endl;
119  cout << "[MuonRecoOneHLT] Is MuonEventFlag On? "<< _SignleMuonEventFlag->on() << endl;
120 #endif
121  if ( _SingleMuonEventFlag->on() ) _SingleMuonEventFlag->initRun( iRun, iSetup );
122  if ( _DoubleMuonEventFlag->on() ) _DoubleMuonEventFlag->initRun( iRun, iSetup );
123 
128 }
GenericTriggerEventFlag * _DoubleMuonEventFlag
GenericTriggerEventFlag * _SingleMuonEventFlag
std::vector< std::string > expressionsFromDB(const std::string &key, const edm::EventSetup &setup)
Reads and returns logical expressions from DB.
std::vector< std::string > singlemuonExpr_
tuple cout
Definition: gather_cfg.py:121
void initRun(const edm::Run &run, const edm::EventSetup &setup)
To be called from beginRun() methods.

Member Data Documentation

GenericTriggerEventFlag* MuonRecoOneHLT::_DoubleMuonEventFlag
private

Definition at line 54 of file MuonRecoOneHLT.h.

Referenced by beginRun(), MuonRecoOneHLT(), and ~MuonRecoOneHLT().

GenericTriggerEventFlag* MuonRecoOneHLT::_SingleMuonEventFlag
private

Definition at line 53 of file MuonRecoOneHLT.h.

Referenced by beginRun(), MuonRecoOneHLT(), and ~MuonRecoOneHLT().

int MuonRecoOneHLT::chi2Bin
private

Definition at line 69 of file MuonRecoOneHLT.h.

Referenced by beginJob().

float MuonRecoOneHLT::chi2Max
private

Definition at line 71 of file MuonRecoOneHLT.h.

Referenced by beginJob().

float MuonRecoOneHLT::chi2Min
private

Definition at line 70 of file MuonRecoOneHLT.h.

Referenced by beginJob().

std::vector<MonitorElement*> MuonRecoOneHLT::chi2OvDFGlbTrack
private

Definition at line 79 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::chi2OvDFStaTrack
private

Definition at line 96 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::chi2OvDFTight
private

Definition at line 85 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::chi2OvDFTrack
private

Definition at line 91 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

std::vector<std::string> MuonRecoOneHLT::doublemuonExpr_
private

Definition at line 52 of file MuonRecoOneHLT.h.

Referenced by analyze(), and MuonRecoOneHLT().

int MuonRecoOneHLT::etaBin
private

Definition at line 61 of file MuonRecoOneHLT.h.

Referenced by beginJob().

std::vector<MonitorElement*> MuonRecoOneHLT::etaGlbTrack
private

Definition at line 77 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

float MuonRecoOneHLT::etaMax
private

Definition at line 63 of file MuonRecoOneHLT.h.

Referenced by beginJob().

float MuonRecoOneHLT::etaMin
private

Definition at line 62 of file MuonRecoOneHLT.h.

Referenced by beginJob().

MonitorElement* MuonRecoOneHLT::etaStaTrack
private

Definition at line 94 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::etaTight
private

Definition at line 83 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::etaTrack
private

Definition at line 89 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

std::string MuonRecoOneHLT::metname
private

Definition at line 46 of file MuonRecoOneHLT.h.

Referenced by analyze().

MonitorElement* MuonRecoOneHLT::muReco
private

Definition at line 74 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

edm::ParameterSet MuonRecoOneHLT::parameters
private
int MuonRecoOneHLT::phiBin
private

Definition at line 65 of file MuonRecoOneHLT.h.

Referenced by beginJob().

std::vector<MonitorElement*> MuonRecoOneHLT::phiGlbTrack
private

Definition at line 78 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

float MuonRecoOneHLT::phiMax
private

Definition at line 67 of file MuonRecoOneHLT.h.

Referenced by beginJob().

float MuonRecoOneHLT::phiMin
private

Definition at line 66 of file MuonRecoOneHLT.h.

Referenced by beginJob().

MonitorElement* MuonRecoOneHLT::phiStaTrack
private

Definition at line 95 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::phiTight
private

Definition at line 84 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::phiTrack
private

Definition at line 90 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

int MuonRecoOneHLT::ptBin
private

Definition at line 57 of file MuonRecoOneHLT.h.

Referenced by beginJob().

std::vector<MonitorElement*> MuonRecoOneHLT::ptGlbTrack
private

Definition at line 80 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

float MuonRecoOneHLT::ptMax
private

Definition at line 59 of file MuonRecoOneHLT.h.

Referenced by beginJob().

float MuonRecoOneHLT::ptMin
private

Definition at line 58 of file MuonRecoOneHLT.h.

Referenced by beginJob().

MonitorElement* MuonRecoOneHLT::ptStaTrack
private

Definition at line 97 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::ptTight
private

Definition at line 86 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

MonitorElement* MuonRecoOneHLT::ptTrack
private

Definition at line 92 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

std::vector<std::string> MuonRecoOneHLT::singlemuonExpr_
private

Definition at line 51 of file MuonRecoOneHLT.h.

Referenced by analyze(), beginRun(), and MuonRecoOneHLT().

edm::InputTag MuonRecoOneHLT::theMuonCollectionLabel
private

Definition at line 48 of file MuonRecoOneHLT.h.

Referenced by analyze(), and beginJob().

edm::InputTag MuonRecoOneHLT::theSTACollectionLabel
private

Definition at line 49 of file MuonRecoOneHLT.h.