CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SimHitShifter.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SimHitShifter
4 // Class: SimHitShifter
5 //
13 //
14 // Original Author: Camilo Andres Carrillo Montoya,40 2-B15,+41227671625,
15 // Created: Mon Aug 30 18:35:05 CEST 2010
16 //
17 //
18 
19 
20 // system include files
21 #include <memory>
22 
23 // user include files
26 
29 
31 
51 
59 
63 
68 
71 
73 
75 
81 
82 #include <cmath>
83 
84 //Root
85 #include "TFile.h"
86 #include "TF1.h"
87 #include "TH1F.h"
88 #include "TH1.h"
89 #include "TH2F.h"
90 #include "TROOT.h"
91 #include "TMath.h"
92 #include "TCanvas.h"
93 
94 //Track
100 
101 #include<fstream>
102 
103 
104 //
105 // class declaration
106 //
107 
109  public:
110  explicit SimHitShifter(const edm::ParameterSet&);
111  ~SimHitShifter();
112  //edm::ESHandle <RPCGeometry> rpcGeo;
113  virtual void beginRun(const edm::Run&, const edm::EventSetup&) override;
114  std::map<int,float> shiftinfo;
115 
116 
117  private:
119  virtual void beginJob(const edm::Run&, const edm::EventSetup&) ;
120  virtual void produce(edm::Event&, const edm::EventSetup&) override;
121  virtual void endJob() override ;
122 
123 };
124 
126 {
127  std::cout<<"in the constructor"<<std::endl;
128 
129  ShiftFileName = iConfig.getUntrackedParameter<std::string>("ShiftFileName","/afs/cern.ch/user/c/carrillo/simhits/CMSSW_3_5_8_patch2/src/simhitshifter/SimHitShifter/Merged_Muon_RawId_Shift.txt");
130 
131  //iSetup.get<MuonGeometryRecord>().get(rpcGeo);
132 
133  std::ifstream ifin(ShiftFileName.c_str());
134 
135  int rawId;
136  float offset;
137 
138  std::cout<<"In the constructor, The name of the file is "<<ShiftFileName.c_str()<<std::endl;
139 
140  if(!ifin) std::cout<<"Problem reading the map rawId shift "<<ShiftFileName.c_str()<<std::endl;
141  assert(ifin);
142 
143  while (ifin.good()){
144  ifin >>rawId >>offset;
145  shiftinfo[rawId]=offset;
146  std::cout<<"rawId ="<<rawId<<" offset="<<offset<<std::endl;
147  }
148 
149  produces<edm::PSimHitContainer>("MuonCSCHits");
150  produces<edm::PSimHitContainer>("MuonDTHits");
151  produces<edm::PSimHitContainer>("MuonRPCHits");
152 }
153 
154 
156 {
157 }
158 
160  using namespace edm;
161 
162  //std::cout << " Getting the SimHits " <<std::endl;
163  std::vector<edm::Handle<edm::PSimHitContainer> > theSimHitContainers;
164  iEvent.getManyByType(theSimHitContainers);
165  //std::cout << " The Number of sim Hits is " << theSimHitContainers.size() <<std::endl;
166 
167  std::auto_ptr<edm::PSimHitContainer> pcsc(new edm::PSimHitContainer);
168  std::auto_ptr<edm::PSimHitContainer> pdt(new edm::PSimHitContainer);
169  std::auto_ptr<edm::PSimHitContainer> prpc(new edm::PSimHitContainer);
170 
171  std::vector<PSimHit> theSimHits;
172 
173  using std::oct;
174  using std::dec;
175 
176  for (int i = 0; i < int(theSimHitContainers.size()); i++){
177  theSimHits.insert(theSimHits.end(),theSimHitContainers.at(i)->begin(),theSimHitContainers.at(i)->end());
178  }
179 
180  for (std::vector<PSimHit>::const_iterator iHit = theSimHits.begin(); iHit != theSimHits.end(); iHit++){
181  DetId theDetUnitId((*iHit).detUnitId());
182  DetId simdetid= DetId((*iHit).detUnitId());
183 
184  if(simdetid.det()!=DetId::Muon) continue;
185 
186  float newtof = 0;
187 
188  if(simdetid.det()==DetId::Muon && simdetid.subdetId()== MuonSubdetId::RPC){//Only RPCs
189  //std::cout<<"\t\t We have an RPC Sim Hit! in t="<<(*iHit).timeOfFlight()<<" DetId="<<(*iHit).detUnitId()<<std::endl;
190  if(shiftinfo.find(simdetid.rawId())==shiftinfo.end()){
191  std::cout<<"RPC Warning the RawId = "<<simdetid.det()<<" | "<<simdetid.rawId()<<"is not in the map"<<std::endl;
192  newtof = (*iHit).timeOfFlight();
193  }else{
194  newtof = (*iHit).timeOfFlight()+shiftinfo[simdetid.rawId()];
195  }
196 
197  PSimHit hit((*iHit).entryPoint(),(*iHit).exitPoint(),(*iHit).pabs(),
198  newtof,
199  (*iHit).energyLoss(),(*iHit).particleType(),simdetid,(*iHit). trackId(),(*iHit).thetaAtEntry(),(*iHit).phiAtEntry(),(*iHit).processType());
200  prpc->push_back(hit);
201  }
202  else if(simdetid.det()==DetId::Muon && simdetid.subdetId()== MuonSubdetId::DT){//Only DTs
203  int RawId = simdetid.rawId();
204  std::cout<<"We found a DT simhit the RawId in Dec is";
205  std::cout<<dec<<RawId<<std::endl;
206  std::cout<<"and in oct"<<std::endl;
207  std::cout<<oct<<RawId<< std::endl;
208  std::cout<<"once masked in oct "<<std::endl;
209  int compressedRawId = RawId/8/8/8/8/8;
210  std::cout<<compressedRawId<<std::endl;
211  std::cout<<"extendedRawId"<<std::endl;
212  int extendedRawId = compressedRawId*8*8*8*8*8;
213  std::cout<<extendedRawId<<std::endl;
214  std::cout<<"converted again in decimal"<<std::endl;
215  std::cout<<dec<<extendedRawId<<std::endl;
216 
217  if(shiftinfo.find(extendedRawId)==shiftinfo.end()){
218  //std::cout<<"DT Warning the RawId = "<<extendedRawId<<"is not in the map"<<std::endl;
219  newtof = (*iHit).timeOfFlight();
220  }else{
221  newtof = (*iHit).timeOfFlight()+shiftinfo[extendedRawId];
222  std::cout<<"RawId = "<<extendedRawId<<"is in the map "<<(*iHit).timeOfFlight()<<" "<<newtof<<std::endl;
223  }
224 
225  std::cout<<"\t\t We have an DT Sim Hit! in t="<<(*iHit).timeOfFlight()<<" DetId="<<(*iHit).detUnitId()<<std::endl;
226  PSimHit hit((*iHit).entryPoint(),(*iHit).exitPoint(),(*iHit).pabs(),
227  newtof,
228  (*iHit).energyLoss(),(*iHit).particleType(),simdetid,(*iHit). trackId(),(*iHit).thetaAtEntry(),(*iHit).phiAtEntry(),(*iHit).processType());
229  pdt->push_back(hit);
230  }
231  else if(simdetid.det()==DetId::Muon && simdetid.subdetId()== MuonSubdetId::CSC){//Only CSCs
232  //std::cout<<"\t\t We have an CSC Sim Hit! in t="<<(*iHit).timeOfFlight()<<" DetId="<<(*iHit).detUnitId()<<std::endl;
233 
234  CSCDetId TheCSCDetId = CSCDetId(simdetid);
235  CSCDetId TheChamberDetId = TheCSCDetId.chamberId();
236 
237  if(shiftinfo.find(TheChamberDetId.rawId())==shiftinfo.end()){
238  std::cout<<"The RawId is not in the map,perhaps it is on the CSCs station 1 ring 4"<<std::endl;
239  if(TheChamberDetId.station()==1 && TheChamberDetId.ring()==4){
240  CSCDetId TheChamberDetIdNoring4= CSCDetId(TheChamberDetId.endcap(),TheChamberDetId.station(),1 //1 instead of 4
241  ,TheChamberDetId.chamber(),TheChamberDetId.layer());
242 
243  if(shiftinfo.find(TheChamberDetIdNoring4.rawId())==shiftinfo.end()){
244  std::cout<<"CSC Warning the RawId = "<<TheChamberDetIdNoring4<<" "<<TheChamberDetIdNoring4.rawId()<<"is not in the map"<<std::endl;
245  newtof = (*iHit).timeOfFlight();
246  }else{
247  newtof = (*iHit).timeOfFlight()+shiftinfo[TheChamberDetIdNoring4.rawId()];
248  }
249  }
250  }else{
251  newtof = (*iHit).timeOfFlight()+shiftinfo[TheChamberDetId.rawId()];
252  }
253 
254  PSimHit hit((*iHit).entryPoint(),(*iHit).exitPoint(),(*iHit).pabs(),
255  newtof,
256  (*iHit).energyLoss(),(*iHit).particleType(),simdetid,(*iHit). trackId(),(*iHit).thetaAtEntry(),(*iHit).phiAtEntry(),(*iHit).processType());
257 
258  std::cout<<"CSC check newtof"<<newtof<<" "<<(*iHit).timeOfFlight()<<std::endl;
259  if(newtof==(*iHit).timeOfFlight())std::cout<<"Warning!!!"<<std::endl;
260  pcsc->push_back(hit);
261  }
262  }
263 
264  std::cout<<"Putting collections in the event"<<std::endl;
265 
266  iEvent.put(pcsc,"MuonCSCHits");
267  iEvent.put(pdt,"MuonDTHits");
268  iEvent.put(prpc,"MuonRPCHits");
269 
270 }
271 
272 void
274 {
275 
276 }
277 
278 // ------------ method called once each job just before starting event loop ------------
279 void
281 {
282 
283 }
284 
285 // ------------ method called once each job just after ending the event loop ------------
286 void
288 }
289 
290 //define this as a plug-in
void getManyByType(std::vector< Handle< PROD > > &results) const
Definition: Event.h:454
int chamber() const
Definition: CSCDetId.h:81
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
virtual void endJob() override
assert(m_qm.get())
virtual void beginJob()
Definition: EDProducer.h:79
int layer() const
Definition: CSCDetId.h:74
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
int endcap() const
Definition: CSCDetId.h:106
int iEvent
Definition: GenABIO.cc:230
static const int CSC
Definition: MuonSubdetId.h:13
SimHitShifter(const edm::ParameterSet &)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
std::map< int, float > shiftinfo
CSCDetId chamberId() const
Definition: CSCDetId.h:66
virtual void produce(edm::Event &, const edm::EventSetup &) override
int ring() const
Definition: CSCDetId.h:88
Definition: DetId.h:18
virtual void beginRun(const edm::Run &, const edm::EventSetup &) override
static const int RPC
Definition: MuonSubdetId.h:14
int station() const
Definition: CSCDetId.h:99
tuple cout
Definition: gather_cfg.py:121
static const int DT
Definition: MuonSubdetId.h:12
std::vector< PSimHit > PSimHitContainer
Definition: Run.h:43
std::string ShiftFileName