CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTDigiReader.cc
Go to the documentation of this file.
1 #ifndef SimMuon_DTDigiReader_h
2 #define SimMuon_DTDigiReader_h
3 
15 
18 
21 
22 #include <iostream>
23 
24 #include "TH1F.h" //FIXME
25 #include "TFile.h"
26 
27 using namespace edm;
28 using namespace std;
29 
30 class DTDigiReader: public EDAnalyzer{
31 
32 public:
33  explicit DTDigiReader(const ParameterSet& pset){
34  file = new TFile("DTDigiPlots.root","RECREATE");
35  file->cd();
36  DigiTimeBox = new TH1F("DigiTimeBox","Digi Time Box",2048,0,1600);
37  DigiTimeBoxW0 = new TH1F("DigiTimeBoxW0","Digi Time Box W0",2000,0,1600);
38  DigiTimeBoxW1 = new TH1F("DigiTimeBoxW1","Digi Time Box W1",2000,0,1600);
39  DigiTimeBoxW2 = new TH1F("DigiTimeBoxW2","Digi Time Box W2",2000,0,1600);
40  if(file->IsOpen()) cout<<"file open!"<<endl;
41  else cout<<"*** Error in opening file ***"<<endl;
42  label = pset.getUntrackedParameter<string>("label");
43  }
44 
45  virtual ~DTDigiReader(){
46  file->cd();
47  DigiTimeBox->Write();
48  DigiTimeBoxW0->Write();
49  DigiTimeBoxW1->Write();
50  DigiTimeBoxW2->Write();
51  file->Close();
52  // delete file;
53  // delete DigiTimeBox;
54  }
55 
56  void analyze(const Event & event, const EventSetup& eventSetup){
57  cout << "--- Run: " << event.id().run()
58  << " Event: " << event.id().event() << endl;
59 
61  event.getByLabel(label, dtDigis);
62  // event.getByLabel("MuonDTDigis", dtDigis);
64  event.getByLabel("g4SimHits","MuonDTHits",simHits);
65 
66 
68  for (detUnitIt=dtDigis->begin();
69  detUnitIt!=dtDigis->end();
70  ++detUnitIt){
71 
72  const DTLayerId& id = (*detUnitIt).first;
73  const DTDigiCollection::Range& range = (*detUnitIt).second;
74 
75  // DTLayerId print-out
76  cout<<"--------------"<<endl;
77  cout<<"id: "<<id;
78 
79  // Loop over the digis of this DetUnit
80  for (DTDigiCollection::const_iterator digiIt = range.first;
81  digiIt!=range.second;
82  ++digiIt){
83  // if((*digiIt).time()<703 &&(*digiIt).time()>699) {
84  cout<<" Wire: "<<(*digiIt).wire()<<endl
85  <<" digi time (ns): "<<(*digiIt).time()<<endl;
86 
87  for(vector<PSimHit>::const_iterator simHit = simHits->begin();
88  simHit != simHits->end(); simHit++){
89  DTWireId wireId((*simHit).detUnitId());
90  if (wireId.layerId()==id && abs((*simHit).particleType())==13){
91  cout<<"entry: "<<(*simHit).entryPoint()<<endl
92  <<"exit: "<<(*simHit).exitPoint()<<endl
93  <<"TOF: "<<(*simHit).timeOfFlight()<<endl;
94  }
95  }
96 
97  // }
98 
99  if(id.layer()==3)
100  DigiTimeBoxW0->Fill((*digiIt).time());
101  else if(abs(id.superlayer())==1)
102  DigiTimeBoxW1->Fill((*digiIt).time());
103  else if(abs(id.superlayer())==2)
104  DigiTimeBoxW2->Fill((*digiIt).time());
105  else cout<<"Error"<<endl;
106  DigiTimeBox->Fill((*digiIt).time());
107 
108  }// for digis in layer
109  }// for layers
110  cout<<"--------------"<<endl;
111  }
112 
113 private:
114  string label;
115  TH1F *DigiTimeBox;
119  TFile *file;
120 
121 };
122 
123 #endif
T getUntrackedParameter(std::string const &, T const &) const
DTDigiReader(const ParameterSet &pset)
Definition: DTDigiReader.cc:33
#define abs(x)
Definition: mlp_lapack.h:159
TH1F * DigiTimeBoxW1
void analyze(const Event &event, const EventSetup &eventSetup)
Definition: DTDigiReader.cc:56
TH1F * DigiTimeBox
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
std::vector< DigiType >::const_iterator const_iterator
tuple simHits
Definition: trackerHits.py:16
virtual ~DTDigiReader()
Definition: DTDigiReader.cc:45
std::pair< const_iterator, const_iterator > Range
tuple cout
Definition: gather_cfg.py:121
TH1F * DigiTimeBoxW2
TH1F * DigiTimeBoxW0