CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PhysicsObjectsMonitor.cc
Go to the documentation of this file.
1 
11 
12 // Collaborating Class Header
16 
18 
22 
23 // Not needed for data monitoring! #include "SimDataFormats/Track/interface/SimTrackContainer.h"
25 
29 
30 
31 using namespace std;
32 using namespace edm;
33 
36  theSTAMuonLabel = pset.getUntrackedParameter<string>("StandAloneTrackCollectionLabel");
37  theSeedCollectionLabel = pset.getUntrackedParameter<string>("MuonSeedCollectionLabel");
38 
39  theRootFileName = pset.getUntrackedParameter<string>("rootFileName");
40  saveRootFile = pset.getUntrackedParameter<bool>("produceRootFile");
41 
42  theDataType = pset.getUntrackedParameter<string>("DataType");
43 
44  if(theDataType != "RealData" && theDataType != "SimData")
45  edm::LogInfo ("PhysicsObjectsMonitor") << "Error in Data Type!!"<<endl;
46 
47  numberOfSimTracks=0;
48  numberOfRecTracks=0;
49 
51  dbe = edm::Service<DQMStore>().operator->();
52 
53 
54 
55 
56 }
57 
60 }
61 
63 
64  dbe->setCurrentFolder("PhysicsObjects/MuonReconstruction");
65 
66 
67  hPres = dbe->book1D("pTRes","pT Resolution",100,-2,2);
68  h1_Pres =dbe->book1D("invPTRes","1/pT Resolution",100,-2,2);
69 
70  charge= dbe->book1D("charge","track charge",5,-2.5,2.5);
71  ptot = dbe->book1D("ptot","track momentum",50,0,50);
72  pt = dbe->book1D("pt","track pT",100,0,50);
73  px = dbe->book1D("px ","track px",100,-50,50);
74  py = dbe->book1D("py","track py",100,-50,50);
75  pz = dbe->book1D("pz","track pz",100,-50,50);
76  Nmuon = dbe->book1D("Nmuon","Number of muon tracks",11,-.5,10.5);
77  Nrechits = dbe->book1D("Nrechits","Number of RecHits/Segments on track",21,-.5,21.5);
78  NDThits = dbe->book1D("NDThits","Number of DT Hits/Segments on track",31,-.5,31.5);
79  NCSChits = dbe->book1D("NCSChits","Number of CSC Hits/Segments on track",31,-.5,31.5);
80  NRPChits = dbe->book1D("NRPChits","Number of RPC hits on track",11,-.5,11.5);
81 
82  DTvsCSC = dbe->book2D("DTvsCSC","Number of DT vs CSC hits on track",29,-.5,28.5,29,-.5,28.5);
83  TH2F * root_ob = DTvsCSC->getTH2F();
84  root_ob->SetXTitle("Number of DT hits");
85  root_ob->SetYTitle("Number of CSC hits");
86 
87 }
88 
90 
91  if(theDataType == "SimData"){
92  // edm::LogInfo ("PhysicsObjectsMonitor") << "Number of Sim tracks: " << numberOfSimTracks;
93  edm::LogInfo ("PhysicsObjectsMonitor") << "Sorry! Running this package on simulation is no longer supported! ";
94  }
95 
96  edm::LogInfo ("PhysicsObjectsMonitor") << "Number of Reco tracks: " << numberOfRecTracks ;
97 
98  if(saveRootFile) dbe->save(theRootFileName);
99  dbe->setCurrentFolder("PhysicsObjects/MuonReconstruction");
100  dbe->removeContents();
101 
102 
103 }
104 
105 
106 void PhysicsObjectsMonitor::analyze(const Event & event, const EventSetup& eventSetup){
107 
108  edm::LogInfo ("PhysicsObjectsMonitor") << "Run: " << event.id().run() << " Event: " << event.id().event();
110 
111  // Get the RecTrack collection from the event
113  event.getByLabel(theSTAMuonLabel, staTracks);
114 
115  ESHandle<MagneticField> theMGField;
116  eventSetup.get<IdealMagneticFieldRecord>().get(theMGField);
117 
118 
119  double recPt=0.;
120  double simPt=0.;
121 
122  // Get the SimTrack collection from the event
123  // if(theDataType == "SimData"){
124  // Handle<SimTrackContainer> simTracks;
125  // event.getByLabel("g4SimHits",simTracks);
126 
127  // numberOfRecTracks += staTracks->size();
128 
129  // SimTrackContainer::const_iterator simTrack;
130 
131  // edm::LogInfo ("PhysicsObjectsMonitor") <<"Simulated tracks: ";
132  // for (simTrack = simTracks->begin(); simTrack != simTracks->end(); ++simTrack){
133  // if (abs((*simTrack).type()) == 13) {
134  // edm::LogInfo ("PhysicsObjectsMonitor") << "Sim pT: "<<(*simTrack).momentum().perp()<<endl;
135  // simPt=(*simTrack).momentum().perp();
136  // edm::LogInfo ("PhysicsObjectsMonitor") <<"Sim Eta: "<<(*simTrack).momentum().eta()<<endl;
137  // numberOfSimTracks++;
138  // }
139  // }
140  // edm::LogInfo ("PhysicsObjectsMonitor") << "\n";
141  //}
142 
143  reco::TrackCollection::const_iterator staTrack;
144 
145  edm::LogInfo ("PhysicsObjectsMonitor") << "Reconstructed tracks: " << staTracks->size() << endl;
146  Nmuon->Fill(staTracks->size());
147  for (staTrack = staTracks->begin(); staTrack != staTracks->end(); ++staTrack){
148  reco::TransientTrack track(*staTrack,&*theMGField);
149 
150  int nrechits=0;
151  int nDThits=0;
152  int nCSChits=0;
153  int nRPChits=0;
154 
155  for (trackingRecHit_iterator it = track.recHitsBegin (); it != track.recHitsEnd (); it++) {
156  if ((*it)->isValid ()) {
157  edm::LogInfo ("PhysicsObjectsMonitor") << "Analyzer: Aha this looks like a Rechit!" << std::endl;
158  if((*it)->geographicalId().subdetId() == MuonSubdetId::DT) {
159  nDThits++;
160  } else if((*it)->geographicalId().subdetId() == MuonSubdetId::CSC) {
161  nCSChits++;
162  } else if((*it)->geographicalId().subdetId() == MuonSubdetId::RPC) {
163  nRPChits++;
164  } else {
165  edm::LogInfo ("PhysicsObjectsMonitor") << "This is an UNKNOWN hit !! " << std::endl;
166  }
167  nrechits++;
168  }
169  }
170 
171  Nrechits->Fill(nrechits);
172  NDThits->Fill(nDThits);
173  NCSChits->Fill(nCSChits);
174  DTvsCSC->Fill(nDThits,nCSChits);
175  NRPChits->Fill(nRPChits);
176 
177  debug.dumpFTS(track.impactPointTSCP().theState());
178 
179  recPt = track.impactPointTSCP().momentum().perp();
180  edm::LogInfo ("PhysicsObjectsMonitor") << " p: "<<track.impactPointTSCP().momentum().mag()<< " pT: "<<recPt<<endl;
181  pt->Fill(recPt);
182  ptot->Fill(track.impactPointTSCP().momentum().mag());
183  charge->Fill(track.impactPointTSCP().charge());
184  px->Fill(track.impactPointTSCP().momentum().x());
185  py->Fill(track.impactPointTSCP().momentum().y());
186  pz->Fill(track.impactPointTSCP().momentum().z());
187  }
188  edm::LogInfo ("PhysicsObjectsMonitor") <<"---"<<endl;
189  if(recPt && theDataType == "SimData"){
190  hPres->Fill( (recPt-simPt)/simPt);
191  h1_Pres->Fill( ( 1/recPt - 1/simPt)/ (1/simPt));
192 
193  }
194 }
195 
T getUntrackedParameter(std::string const &, T const &) const
T perp() const
Definition: PV3DBase.h:71
TrajectoryStateClosestToPoint impactPointTSCP() const
const FreeTrajectoryState & theState() const
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
T y() const
Definition: PV3DBase.h:62
PhysicsObjectsMonitor(const edm::ParameterSet &pset)
Constructor.
double charge(const std::vector< uint8_t > &Ampls)
std::string dumpFTS(const FreeTrajectoryState &fts) const
static const int CSC
Definition: MuonSubdetId.h:15
T mag() const
Definition: PV3DBase.h:66
T z() const
Definition: PV3DBase.h:63
void analyze(const edm::Event &event, const edm::EventSetup &eventSetup)
virtual ~PhysicsObjectsMonitor()
Destructor.
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
trackingRecHit_iterator recHitsEnd() const
last iterator to RecHits
const T & get() const
Definition: EventSetup.h:55
static const int RPC
Definition: MuonSubdetId.h:16
static const int DT
Definition: MuonSubdetId.h:14
double recPt
#define debug
Definition: MEtoEDMFormat.h:34
T x() const
Definition: PV3DBase.h:61
trackingRecHit_iterator recHitsBegin() const
first iterator to RecHits