QwAnalysis
QwDriftChamberVDC.cc
Go to the documentation of this file.
1 /**********************************************************\
2  * File: QwDriftChamberVDC.C *
3  * *
4  * Author: P. M. King , Rakitha Beminiwattha *
5  * J. H. Lee *
6  * Time-stamp: Wednesday, July 28 15:52:19 EDT 2010 *
7 \**********************************************************/
8 
9 
10 
11 #include "QwDriftChamberVDC.h"
12 #include "QwParameterFile.h"
13 #include "boost/bind.hpp"
14 #include <algorithm>
15 
16 #define OK 0
17 
18 const UInt_t QwDriftChamberVDC::kBackPlaneNum=16;
19 const UInt_t QwDriftChamberVDC::kLineNum=8;
20 
21 // Register this subsystem with the factory
23 bool invalid(QwHit& hit){
24  return hit.GetDriftDistance() < 0;
25 }
26 
28  VQwSubsystem(name), QwDriftChamber(name,fWireHitsVDC )
29 {
30  std::vector<QwDelayLine> temp;
31  temp.clear();
32  temp.resize ( kLineNum );
33  fDelayLineArray.resize ( kBackPlaneNum, temp );
34  fDelayLinePtrs.resize ( 21 );
35 }
36 
38 {
39 
40 
41  UInt_t bank_index = 0;
42  Double_t raw_time_arb_unit = 0.0;
43  Double_t ref_time_arb_unit = 0.0;
44  Double_t time_arb_unit = 0.0;
45  EQwDetectorPackage package = kPackageNull;
46  Bool_t local_debug = false;
47  Int_t slot_num = 0;
48 
49  TString reference_name1 = "MasterTrigger";
50  TString reference_name2 = "CopyMasterTrigger";
51 
52  std::vector<QwHit>::iterator end=fTDCHits.end();
53  for ( std::vector<QwHit>::iterator hit=fTDCHits.begin(); hit!=end; hit++ )
54  {
55 
56  bank_index = hit -> GetSubbankID();
57  slot_num = hit -> GetModule();
58  raw_time_arb_unit = (Double_t) hit -> GetRawTime();
59  package = hit -> GetPackage();
60 
61 
62  // John L. introduced this package match reference time subtraction for only Region 3,
63  // I was told it would be better to extend this concept to Region2, so I did, and I
64  // got the worst result..... Q2 = +2.735199e-02 its RMS +1.192504e-02
65  // if I don't use this method in Region2, Q2 = +2.292274e-02 and RMS = +7.133603e-03
66  // if I don't use this method in Region3, I couldn't get "peak" structure
67  // in time distributions of four VDC chambers.
68  //
69  // Why does this method give us a good result for only Region 3? MUX?
70  // I don't know ..
71  // Friday, February 17 14:01:12 EST 2012, jhlee
72 
73  if (package == kPackage1) { // Up is 1
74  reference_name1 = "TrigScintPkg1";
75  }
76  else if (package == kPackage2) {// Down is 2
77  reference_name1 = "TrigScintPkg2";
78  }
79  else {
80  reference_name1 = "MasterTrigger";
81  }
82 
83  ref_time_arb_unit = fF1RefContainer->GetReferenceTimeAU(bank_index, reference_name1);
84 
85  // printf("%f\n", ref_time_arb_unit);
86 
87  if(ref_time_arb_unit== 0.0 ) {
88  ref_time_arb_unit = fF1RefContainer->GetReferenceTimeAU(bank_index, reference_name2);
89  }
90  // printf("%f\n", ref_time_arb_unit);
91  // second time, it returns 0.0, we simply ignore this event ....
92  // set time zero. ReferenceSignalCorrection() will return zero, and increase RFM counter...
93  //
94  time_arb_unit = fF1TDContainer->ReferenceSignalCorrection(raw_time_arb_unit, ref_time_arb_unit, bank_index, slot_num);
95 
96  hit -> SetTime(time_arb_unit);
97  hit -> SetRawRefTime((UInt_t) ref_time_arb_unit);
98  if(local_debug) {
99  QwMessage << this->GetSubsystemName()
100  << " Package " << std::setw(2) << package
101  << " BankIndex " << std::setw(2) << bank_index
102  << " Slot " << std::setw(2) << slot_num
103  << " RawTime : " << std::setw(6) << raw_time_arb_unit
104  << " RefTime : " << std::setw(6) << ref_time_arb_unit
105  << " time : " << std::setw(6) << time_arb_unit
106  << std::endl;
107 
108  }
109 
110  }
111 
112 
113 
114  return;
115 }
116 
117 
118 
119 // void QwDriftChamberVDC::SubtractReferenceTimes()
120 // {
121 // std::vector<Double_t> reftimes;
122 // std::vector<Bool_t> refchecked;
123 // std::vector<Bool_t> refokay;
124 // Bool_t allrefsokay;
125 
126 // std::size_t ref_size = 0;
127 // std::size_t i = 0;
128 // std::size_t j = 0;
129 
130 // ref_size = fReferenceData.size();
131 
132 // reftimes.resize ( ref_size );
133 // refchecked.resize( ref_size );
134 // refokay.resize ( ref_size );
135 
136 // for ( i=0; i<ref_size; i++ )
137 // {
138 // reftimes.at (i) = 0.0;
139 // refchecked.at(i) = kFALSE;
140 // refokay.at (i) = kFALSE;
141 // }
142 
143 // allrefsokay = kTRUE;
144 
145 // UInt_t bankid = 0;
146 // Double_t raw_time_arb_unit = 0.0;
147 // Double_t ref_time_arb_unit = 0.0;
148 // Double_t time_arb_unit = 0.0;
149 
150 // // Double_t raw_time = 0.0;
151 // // Double_t ref_time = 0.0;
152 // // Double_t time = 0.0;
153 // Bool_t local_debug = false;
154 
155 // std::size_t ref_data_size = 0;
156 // std::size_t bank = 0;
157 // Double_t diff_between_refs = 0.0;
158 
159 // //test if the reference time is ok
160 
161 // for ( bank=0; bank< ref_size; bank++ )
162 // {
163 // if(fReferenceMaster.size()==0) continue;
164 
165 // ref_data_size = fReferenceData.at(bank).size();
166 // for ( i=0; i<ref_data_size; ++i )
167 // {
168 // if(fReferenceMaster.at(bank).size()==0) continue;
169 
170 // diff_between_refs = fReferenceData.at ( bank ).at ( i ) - fReferenceMaster.at ( bank ).at(0);
171 // // std::cout << fReferenceData.at ( bank ).at ( i ) << " " << fReferenceMaster.at ( bank ).at(0) << std::endl;
172 // // std::cout << "diff: " << diff_between_refs << std::endl;
173 
174 // if ( diff_between_refs> -400.0 || diff_between_refs < -940.0 ) {
175 // fReferenceData.at ( bank ).erase ( fReferenceData.at(bank).begin() +i );
176 // i--;
177 // }
178 
179 // else{
180 // }
181 
182 // ref_data_size = fReferenceData.at ( bank ).size();
183 // }
184 // }
185 
186 
187 // for ( std::vector<QwHit>::iterator hit=fTDCHits.begin(); hit!=fTDCHits.end(); hit++ )
188 // {
189 // // Only try to check the reference time for a bank if there is at least one
190 // // non-reference hit in the bank.
191 // bankid = hit->GetSubbankID();
192 
193 // if ( not refchecked.at ( bankid ) )
194 // {
195 
196 // if ( fReferenceData.at ( bankid ).empty() )
197 // {
198 // if(local_debug) {
199 // QwWarning << "QwDriftChamberVDC::SubtractReferenceTimes: Subbank ID "
200 // << bankid << " is missing a reference time." << QwLog::endl;
201 // }
202 // refokay.at ( bankid ) = kFALSE;
203 // allrefsokay = kFALSE;
204 // }
205 // else
206 // {
207 // reftimes.at ( bankid ) = fReferenceData.at ( bankid ).at ( fReferenceData.at ( bankid ).size()-1 );
208 // refokay.at ( bankid ) = kTRUE;
209 // }
210 
211 // if ( refokay.at ( bankid ) )
212 // {
213 // for ( j=0; j<fReferenceData.at ( bankid ).size(); j++ )
214 // {
215 // fReferenceData.at ( bankid ).at ( j ) -= reftimes.at ( bankid );
216 // }
217 // }
218 // refchecked.at ( bankid ) = kTRUE;
219 // }
220 
221 // if ( refokay.at ( bankid ) )
222 // {
223 // Int_t slot_num = hit -> GetModule();
224 // raw_time_arb_unit = (Double_t) hit -> GetRawTime();
225 // ref_time_arb_unit = (Double_t) reftimes.at(bankid);
226 // // raw_time = ( Double_t ) hit -> GetRawTime();
227 // // ref_time = ( Double_t ) reftimes.at ( bankid );
228 // // Int_t bank_index = hit->GetSubbankID();
229 // // Int_t slot_num = hit->GetModule();
230 
231 // time_arb_unit = fF1TDContainer->ReferenceSignalCorrection(raw_time_arb_unit, ref_time_arb_unit, bankid, slot_num);
232 
233 // hit -> SetTime(time_arb_unit);
234 // hit -> SetRawRefTime((UInt_t) ref_time_arb_unit);
235 // // time = fF1TDContainer->ReferenceSignalCorrection ( raw_time, ref_time, bankid, slot_num );
236 // // hit -> SetTime ( time );
237 
238 // if(local_debug) {
239 // QwMessage << this->GetSubsystemName()
240 // << " BankIndex " << std::setw(2) << bankid
241 // << " Slot " << std::setw(2) << slot_num
242 // << " RawTime : " << std::setw(6) << raw_time_arb_unit
243 // << " RefTime : " << std::setw(6) << ref_time_arb_unit
244 // << " time : " << std::setw(6) << time_arb_unit
245 // << std::endl;
246 
247 // }
248 
249 
250 // }
251 // }
252 
253 // bankid = 0;
254 
255 // if ( not allrefsokay )
256 // {
257 // std::vector<QwHit> tmp_hits;
258 // tmp_hits.clear();
259 // for ( std::vector<QwHit>::iterator hit=fTDCHits.begin(); hit!=fTDCHits.end(); hit++ )
260 // {
261 // bankid = hit->GetSubbankID();
262 // if ( refokay.at ( bankid ) )
263 // {
264 // tmp_hits.push_back ( *hit );
265 // }
266 // }
267 // // std::cout << "FTDC size " << fTDCHits.size() << "tmp hit size " << tmp_hits.size() << std::endl;
268 // fTDCHits.clear();
269 // fTDCHits = tmp_hits;
270 // // std::cout << "FTDC size " << fTDCHits.size() << "tmp hit size " << tmp_hits.size() << std::endl;
271 // }
272 // return;
273 // }
274 
275 
276 Double_t QwDriftChamberVDC::CalculateDriftDistance ( Double_t drifttime, QwDetectorID detector )
277 {
278  // Double_t angle_degree = 45.0;
279  Double_t distance_mm = 0.0;
280  Double_t distance_cm = 0.0;
281  Double_t dt = drifttime;
282  Double_t resolution = 0.5; //resolution is 0.5ns
283 
284  Int_t index = (Int_t) (dt/resolution);
285 
286  Int_t maximum_allowed_drifttime_by_john = 310;
287  Int_t minimum_allowed_drifttime_by_john = 0;
288 
289  if(dt >= minimum_allowed_drifttime_by_john && dt < maximum_allowed_drifttime_by_john) {
290  distance_mm = ( dt-resolution*index ) / resolution * ( fTtoDNumbers.at ( index+1 )-fTtoDNumbers.at ( index ) ) + fTtoDNumbers.at ( index );
291  }
292  else {
293  distance_mm=-50;
294  }
295  distance_cm = 0.1*distance_mm;
296 
297  return distance_cm;
298 }
299 
300 
301 void QwDriftChamberVDC::FillRawTDCWord ( Int_t bank_index, Int_t slot_num, Int_t chan, UInt_t data )
302 {
303  Bool_t local_debug = false;
304 
305  if (local_debug) printf("\n");
306  Int_t tdcindex = 0;
307  tdcindex = GetTDCIndex ( bank_index,slot_num );
308  if ( tdcindex not_eq -1 )
309  {
310  Int_t hitCount = 1;
311 
312  /// \todo Should this direction be properly initialized by fTDCPtrs.at(tdcindex).at(chan).fDirection ?
313  EQwDirectionID direction = kDirectionNull;
314 
315  fF1RefContainer->SetReferenceSignal(bank_index, slot_num, chan, data, false);
316 
317  Int_t octant = fTDCPtrs.at(tdcindex).at(chan).fOctant;
318  Int_t plane = fTDCPtrs.at(tdcindex).at(chan).fPlane;
319  Int_t wire = fTDCPtrs.at(tdcindex).at(chan).fElement;
320 
321  // And this below line was missing.
322  EQwDetectorPackage package = fTDCPtrs.at(tdcindex).at(chan).fPackage;
323  // But I did the correct way to assign the correct package in fTDCPtrs
324  // *** Break *** segmentation violation
325  // due to FillHistograms()
326  // I guess, plane_index is calculated from kPackageUp instead of kPackageUp and kPackageDown
327  // In here I use kPackageNull as an initial value,
328  // and save the correct package number in fTDCPtrs in order to use
329  // the correct reference time according to package number,
330  // and use kpackageUp instead of access fPackage in fTDCPtrs in FillHistograms.
331  // Monday, February 13 14:27:50 EST 2012, jhlee
332 
333 
334 
335  if ( plane == -1 or wire == -1 )
336  {
337  // This channel is not connected to anything. Do nothing.
338  }
339  else if ( plane == kReferenceChannelPlaneNumber )
340  {
341  if (local_debug) {
342  std::cout << " -------------------------"
343  << " plane " << plane
344  << " slot " << slot_num
345  << " wire " << wire
346  << " data " << data
347  << std::endl;
348  }
349 
350  fReferenceData.at ( wire ).push_back ( data );
351  }
352  else if ( plane == kCodaMasterPlaneNumber )
353  {
354  if (local_debug) {
355  std::cout << " -------------------------" << " plane " << plane
356  << " slot " << slot_num
357  << " wire " << wire
358  << " data " << data
359  << std::endl;
360  }
361  fReferenceMaster.at ( wire ).push_back ( data );
362  }
363  else
364  {
365  plane=fDelayLinePtrs.at ( slot_num ).at ( chan ).fBackPlane;
366  //std::cout<<"At QwDriftChamberVDC::FillRawTDCWord_1"<<endl;
367  hitCount = std::count_if ( fTDCHits.begin(), fTDCHits.end(),
368  boost::bind (
369  &QwHit::WireMatches,_1, kRegionID3, boost::ref ( package ), boost::ref ( plane ), boost::ref ( wire )
370  )
371  );
372 
373  fTDCHits.push_back (
374  QwHit (
375  bank_index,
376  slot_num,
377  chan,
378  hitCount,
379  kRegionID3,
380  package,
381  octant,
382  plane,
383  direction,
384  wire,
385  data
386  )
387  );
388  //in order-> bank index, slot num, chan, hitcount, region=3, package, plane,,direction, wire,wire hit time
389 
390  }
391 
392  }
393 }
394 
395 
396 
398  const EQwDetectorPackage package,
399  const Int_t octant,
400  const Int_t plane,
401  const Int_t wire )
402 {
403 
404  Int_t r3_wire_number_per_plane = 279;
405 
406 
407  // We should not see when plane is equal to "kReferenceChannelPlaneNumber"
408  //, because in LocalChannelMap, we assigned "reference channels" already into whatever objects.
409  // And Since it is the same structure as HDC, but R3 uses its own method to select the refernece signals,
410  // which I want to undestand how and why soon, all if conditions are invaild for Region 3.
411  // Wednesday, February 8 10:51:20 EST 2012, jhlee
412 
413  // if ( plane == kReferenceChannelPlaneNumber )
414  // {
415  // printf("Can we See this?t\n");
416  // LinkReferenceChannel ( chan, plane, wire );
417  // }
418  // else
419  // {
420  fTDCPtrs.at ( fCurrentTDCIndex ).at ( chan ).fOctant = octant;
421  fTDCPtrs.at ( fCurrentTDCIndex ).at ( chan ).fPackage = package;
422  fTDCPtrs.at ( fCurrentTDCIndex ).at ( chan ).fPlane = plane;
423  fTDCPtrs.at ( fCurrentTDCIndex ).at ( chan ).fElement = wire;
424 
425  Int_t real_size = 0;
426  real_size = 4 * ( ( Int_t ) package-1 ) +plane;
427  if ( real_size >= ( Int_t ) fWiresPerPlane.size() ) // plane is Int_t
428  {
429  fWiresPerPlane.resize ( real_size + 1 );
430  // size() is one more larger than last plane number
431  // For VDC, plane 1,2,....,8
432  // vector 0,1,2,....,8
433  // thus, vector.size() returns 9
434  // So the magic number "1" is.
435  // Wednesday, July 28 21:58:13 EDT 2010, jhlee
436  }
437  fWiresPerPlane.at ( real_size ) = r3_wire_number_per_plane;
438  // }
439  return OK;
440 }
441 
442 
444 {
445  bool temp_local_debug = false;
446  // if (temp_local_debug){
447  // std::cout << " QwDriftChamberVDC::AddChannelDefinition"<<std::endl;
448  // std::cout << "plane " << plane << " wire " << wire << std::endl;
449  // }
450 
451  std::size_t i =0;
452 
453  fWireData.resize ( fWiresPerPlane.size() );
454  for ( i=1; i<fWiresPerPlane.size(); i++ )
455  {
456  if ( temp_local_debug )
457  {
458  std::cout << "wire #" << i
459  << " " << fWiresPerPlane.at ( i )
460  << std::endl;
461  }
462  fWireData.at ( i ).resize ( fWiresPerPlane.at ( i ) );
463  }
464 
465  Int_t mytdc = 0;
466  for ( i=0; i<fTDC_Index.size(); i++ )
467  {
468  for ( size_t j=0; j<fTDC_Index.at ( i ).size(); j++ )
469  {
470  mytdc = fTDC_Index.at ( i ).at ( j );
471  if ( mytdc not_eq -1 )
472  {
473  for ( size_t k=0; k<fTDCPtrs.at ( mytdc ).size(); k++ )
474  {
475  Int_t package = fTDCPtrs.at ( mytdc ).at ( k ).fPackage;
476  Int_t plane = fTDCPtrs.at ( mytdc ).at ( k ).fPlane;
477  if ( ( plane>0 ) and ( plane not_eq ( Int_t ) kReferenceChannelPlaneNumber ) and ( plane not_eq ( Int_t ) kCodaMasterPlaneNumber) )
478  {
479  Int_t wire = fTDCPtrs.at ( mytdc ).at ( k ).fElement;
480  Int_t window_number=0;
481  if ( wire<9 ) window_number=18;
482  else if ( wire==152 ) window_number=16;
483  else window_number=17;
484  for ( Int_t index=0;index<window_number;index++ )
485  {
486 
487  fWireData.at ( 4* ( package-1 ) +plane ).at ( wire-1 ).SetElectronics ( i,j,k );
488  wire+=8;
489  if ( temp_local_debug )
490  {
491  std::cout << "mytdc " << mytdc
492  << "wire #" << wire
493  << " plane " << plane
494  << " (i j k) (" << i <<" " << j << " "<< k << ")"
495  << std::endl;
496  }
497  }
498  }
499  }
500  }
501  }
502  }
503  // std::cout << " QwDriftChamberVDC::AddChannelDefinition END"<<std::endl;
504  return OK;
505 }
506 
507 
508 
509 // Int_t QwDriftChamberVDC::LoadChannelMap ( TString mapfile )
510 // {
511 // //some type(like string,Int_t)need to be changed to root type
512 // LoadTimeWireOffset ( "R3_timeoffset.map" );
513 // LoadTtoDParameters ( "R3_TtoDTable.map" );
514 // TString varname,varvalue;
515 // UInt_t value = 0;
516 // UInt_t channum = 0; //store temporary channel number
517 // UInt_t lnnum = 0; //store line number
518 // Int_t bpnum = 0; // temp backplane
519 // UInt_t plnum,firstwire,LR; //store temp package,plane,firstwire and left or right information
520 // plnum = firstwire = LR = 0;
521 
522 // TString pknum,dir;
523 // Bool_t IsFirstChannel = kTRUE;
524 
525 // std::vector<Double_t> tmpWindows;
526 // QwParameterFile mapstr ( mapfile.Data() );
527 // fDetectorMaps.insert(mapstr.GetParamFileNameContents());
528 // EQwDetectorPackage package = kPackageNull;
529 // EQwDirectionID direction = kDirectionNull;
530 
531 // std::string string_a;
532 // std::pair<Double_t,Double_t> pair_a;
533 
534 // while ( mapstr.ReadNextLine() )
535 // {
536 // mapstr.TrimComment ( '!' );
537 // mapstr.TrimWhitespace();
538 // if ( mapstr.LineIsEmpty() ) continue;
539 
540 // if ( mapstr.HasVariablePair ( "=",varname,varvalue ) ) //to judge whether we find a new slot
541 // {
542 // varname.ToLower();
543 // value = QwParameterFile::GetUInt ( varvalue );
544 // if ( value ==0 )
545 // {
546 // value = atol ( varvalue.Data() );
547 // }
548 // if ( varname == "roc" )
549 // {
550 // RegisterROCNumber ( value , 0 );
551 // }
552 // else if ( varname=="bank" )
553 // {
554 // RegisterSubbank ( value );
555 // }
556 // else if ( varname == "slot" )
557 // {
558 // RegisterSlotNumber ( value );
559 // }
560 // continue; //go to the next line
561 // }
562 
563 // channum = mapstr.GetTypedNextToken<Int_t>();
564 // bpnum = mapstr.GetTypedNextToken<Int_t>();
565 // lnnum = mapstr.GetTypedNextToken<Int_t>();
566 
567 // if ( channum ==0 and bpnum ==0 )
568 // {
569 // if ( IsFirstChannel == kTRUE ) IsFirstChannel = kFALSE;
570 // else continue;
571 // }
572 
573 // if ( bpnum == kReferenceChannelPlaneNumber || bpnum == kCodaMasterPlaneNumber )
574 // {
575 // LinkReferenceChannel ( channum, bpnum, lnnum );
576 // continue;
577 // }
578 
579 // LR= mapstr.GetTypedNextToken<Int_t>();
580 // fDelayLinePtrs.at ( value ).push_back ( QwDelayLineID ( bpnum,lnnum,LR ) ); //the slot and channel number must be in order
581 // //pknum=(atol(mapstr.GetTypedNextToken<TString>()));
582 // pknum = mapstr.GetTypedNextToken<TString>();
583 // plnum = mapstr.GetTypedNextToken<Int_t>();
584 // //dir=(atol(mapstr.GetTypedNextToken<TString>()));
585 // dir= mapstr.GetTypedNextToken<TString>();
586 // firstwire= mapstr.GetTypedNextToken<Int_t>();
587 
588 
589 // if ( pknum=="u" )
590 // {
591 // package=kPackageUp;
592 // }
593 // else if ( pknum=="v" )
594 // {
595 // package=kPackageDown;
596 // }
597 
598 // BuildWireDataStructure ( channum,package,plnum,firstwire );
599 
600 // if ( fDelayLineArray.at ( bpnum ).at ( lnnum ).Fill == kFALSE ) //if this delay line has not been Filled in the data
601 // {
602 // string_a = mapstr.GetTypedNextToken<std::string>();
603 // while ( string_a.size() !=0 )
604 // {
605 // tmpWindows.push_back ( atof ( string_a.c_str() ) );
606 // string_a = mapstr.GetTypedNextToken<std::string>();
607 // }
608 
609 // fDelayLineArray.at ( bpnum ).at ( lnnum ).fPackage= package;
610 // fDelayLineArray.at ( bpnum ).at ( lnnum ).fPlane=plnum;
611 // if ( dir == "u" ) direction=kDirectionU;
612 // else if ( dir == "v" ) direction=kDirectionV;
613 // fDelayLineArray.at ( bpnum ).at ( lnnum ).fDirection= direction;
614 // // if ( dir == "u" )
615 // // fDelayLineArray.at ( bpnum ).at ( lnnum ).fDirection= kDirectionU;
616 // // else if ( dir == "v" )
617 // // fDelayLineArray.at ( bpnum ).at ( lnnum ).fDirection= kDirectionV;
618 // fDelayLineArray.at ( bpnum ).at ( lnnum ).fFirstWire=firstwire;
619 // for ( size_t i=0;i<tmpWindows.size() /2;i++ )
620 // {
621 // pair_a.first = tmpWindows.at ( 2*i );
622 // pair_a.second = tmpWindows.at ( 2*i+1 );
623 // fDelayLineArray.at ( bpnum ).at ( lnnum ).Windows.push_back ( pair_a );
624 // }
625 
626 // // std::cout << "DelayLine: back plane: " << bpnum
627 // // << "line number " << lnnum
628 // // << " Windows.size: " << fDelayLineArray.at ( bpnum ).at ( lnnum ).Windows.size()
629 // // << std::endl;
630 // fDelayLineArray.at ( bpnum ).at ( lnnum ).Fill=kTRUE;
631 // tmpWindows.clear();
632 // }
633 // }
634 // AddChannelDefinition();
635 
636 // mapstr.Close(); // Close the file (ifstream)
637 // return OK;
638 // }
639 
640 
641 Int_t QwDriftChamberVDC::LoadChannelMap ( TString mapfile )
642 {
643  //some type(like string,Int_t)need to be changed to root type
644  LoadTimeWireOffset ( "R3_timeoffset.map" );
645  LoadTtoDParameters ( "R3_TtoDTable.map" );
646  TString varname,varvalue;
647  UInt_t value = 0;
648  UInt_t channum = 0; //store temporary channel number
649  UInt_t lnnum = 0; //store line number
650  Int_t bpnum = 0; // temp backplane
651  UInt_t plnum,firstwire,LR; //store temp package,plane,firstwire and left or right information
652 
653  TString name = "";
654 
655  plnum = firstwire = LR = 0;
656 
657  TString pknum,dir;
658  Bool_t IsFirstChannel = kTRUE;
659 
660  std::vector<Double_t> tmpWindows;
661  QwParameterFile mapstr ( mapfile.Data() );
662  fDetectorMaps.insert(mapstr.GetParamFileNameContents());
663  EQwDirectionID direction = kDirectionNull;
664 
665  std::string string_a;
666  std::pair<Double_t,Double_t> pair_a;
667 
668  Int_t extra_reference_channel_number_for_R3 = 97;
669 
670  while ( mapstr.ReadNextLine() )
671  {
672  mapstr.TrimComment ( '!' );
673  mapstr.TrimWhitespace();
674  if ( mapstr.LineIsEmpty() ) continue;
675 
676  if ( mapstr.HasVariablePair ( "=",varname,varvalue ) ) //to judge whether we find a new slot
677  {
678  varname.ToLower();
679  value = QwParameterFile::GetUInt ( varvalue );
680  if ( value ==0 )
681  {
682  value = atol ( varvalue.Data() );
683  }
684  if ( varname == "roc" )
685  {
686  RegisterROCNumber ( value , 0 );
687  }
688  else if ( varname=="bank" )
689  {
690  RegisterSubbank ( value );
691  }
692  else if ( varname == "slot" )
693  {
694  RegisterSlotNumber ( value );
695  }
696  continue; //go to the next line
697  }
698 
699  channum = mapstr.GetTypedNextToken<Int_t>();
700  bpnum = mapstr.GetTypedNextToken<Int_t>();
701  name = mapstr.GetTypedNextToken<TString>();
702 
703 
704 
705  if ( bpnum == kReferenceChannelPlaneNumber || bpnum == kCodaMasterPlaneNumber || bpnum == extra_reference_channel_number_for_R3) {
706 
707  fF1RefContainer -> AddF1TDCReferenceSignal(new F1TDCReferenceSignal(fCurrentBankIndex, fCurrentSlot, channum, name));
708  //
709  // old map uses 0, so simply set lnnum = 0
710  //
711  if ( bpnum != extra_reference_channel_number_for_R3 ) {
712  lnnum = 0;
713  LinkReferenceChannel ( channum, bpnum, lnnum);
714  }
715  continue;
716  }
717 
718  //
719  // read third one as string, so it must be converted to integer
720  // out of Reference channels
721  //
722 
723  lnnum = name.Atoi();
724 
725  if ( channum ==0 and bpnum ==0 )
726  {
727  if ( IsFirstChannel == kTRUE ) IsFirstChannel = kFALSE;
728  else continue;
729  }
730 
731 
732  LR = mapstr.GetTypedNextToken<Int_t>();
733 
734  fDelayLinePtrs.at ( value ).push_back ( QwDelayLineID ( bpnum,lnnum,LR ) ); //the slot and channel number must be in order
735 
736  pknum = mapstr.GetTypedNextToken<TString>();
737  plnum = mapstr.GetTypedNextToken<Int_t>();
738  dir = mapstr.GetTypedNextToken<TString>();
739  firstwire= mapstr.GetTypedNextToken<Int_t>();
740 
741  Int_t octant = 0;
742  EQwDetectorPackage package = kPackageNull;
743  fR3Octant = gQwOptions.GetValue<Int_t>("R3-octant");
744  if ( pknum=="u" )
745  {
746  package = kPackage1;
747  octant = (fR3Octant + 4) % 8;
748  }
749  else if ( pknum=="v" )
750  {
751  package = kPackage2;
752  octant = fR3Octant;
753  }
754 
755  BuildWireDataStructure ( channum,package,octant,plnum,firstwire );
756 
757  if ( fDelayLineArray.at ( bpnum ).at ( lnnum ).Fill == kFALSE ) //if this delay line has not been Filled in the data
758  {
759  string_a = mapstr.GetTypedNextToken<std::string>();
760  while ( string_a.size() !=0 )
761  {
762  tmpWindows.push_back ( atof ( string_a.c_str() ) );
763  string_a = mapstr.GetTypedNextToken<std::string>();
764  }
765 
766  fDelayLineArray.at ( bpnum ).at ( lnnum ).fOctant = octant;
767  fDelayLineArray.at ( bpnum ).at ( lnnum ).fPackage = package;
768  fDelayLineArray.at ( bpnum ).at ( lnnum ).fPlane = plnum;
769 
770  if ( dir == "u" ) direction = kDirectionU;
771  else if ( dir == "v" ) direction = kDirectionV;
772 
773  fDelayLineArray.at ( bpnum ).at ( lnnum ).fDirection = direction;
774  fDelayLineArray.at ( bpnum ).at ( lnnum ).fFirstWire = firstwire;
775 
776  for ( size_t i=0;i<tmpWindows.size() /2;i++ )
777  {
778  pair_a.first = tmpWindows.at ( 2*i );
779  pair_a.second = tmpWindows.at ( 2*i+1 );
780  fDelayLineArray.at ( bpnum ).at ( lnnum ).Windows.push_back ( pair_a );
781  }
782 
783  // std::cout << "DelayLine: back plane: " << bpnum
784  // << "line number " << lnnum
785  // << " Windows.size: " << fDelayLineArray.at ( bpnum ).at ( lnnum ).Windows.size()
786  // << std::endl;
787  fDelayLineArray.at ( bpnum ).at ( lnnum ).Fill = kTRUE;
788  tmpWindows.clear();
789  }
790  }
791 
793 
794  mapstr.Close(); // Close the file (ifstream)
795  return OK;
796 }
797 
798 
799 
800 
801 void QwDriftChamberVDC::ReadEvent ( TString& eventfile )
802 {
803  TString varname,varvalue;
804  UInt_t slotnum = 0;
805  UInt_t channum = 0; //store temporary channel number
806  // UInt_t pknum,plnum; //store temp package,plane,firstwire and left or right information
807  UInt_t value = 0;
808  Double_t signal = 0.0; // Double_t? unsigned Int_t ? by jhlee
809  EQwDetectorPackage package = kPackageNull;
810  EQwDirectionID direction = kDirectionNull;
811 
812  QwParameterFile mapstr ( eventfile.Data() );
813  fDetectorMaps.insert(mapstr.GetParamFileNameContents());
814 
815  while ( mapstr.ReadNextLine() )
816  {
817  mapstr.TrimComment ( '!' );
818  mapstr.TrimWhitespace();
819  if ( mapstr.LineIsEmpty() ) continue;
820  if ( mapstr.HasVariablePair ( "=",varname,varvalue ) ) //to judge whether we find a new crate
821  {
822  varname.ToLower();
823  value = atol ( varvalue.Data() );
824  continue;
825  }
826 
827  slotnum = mapstr.GetTypedNextToken<Int_t>();
828  channum = mapstr.GetTypedNextToken<Int_t>();
829  signal = mapstr.GetTypedNextToken<Double_t>();
830  //std::cout << "signal is: " << signal << endl;
831  fTDCHits.push_back ( QwHit ( value,slotnum,channum,0, kRegionID3,package,0,0,direction,0, ( UInt_t ) signal ) );
832  } //only know TDC information and time value
833 
834  mapstr.Close(); // Close the file (ifstream)
835  return;
836 }
837 
838 
839 
840 
842 {
843  if ( not HasDataLoaded() ) return;
844 
845  SubtractReferenceTimes(); // A.U. unit
846  UpdateHits();
847 
848  if ( fDisableWireTimeOffset == false ){
849 
852 
853  std::vector<QwHit>::iterator it;
854  it=std::remove_if(fWireHits.begin(),fWireHits.end(),invalid);
855  if(it!=fWireHits.end())
856  fWireHits.erase(it,fWireHits.end());
857  }
858 
859  return;
860 }
861 
862 
863 
864 
865 
867 {
868  SetDataLoaded ( kFALSE );
869 
870  fTDCHits.clear();
871  fWireHits.clear();
872 
873  std::size_t index = 0;
874  std::size_t j = 0;
875  std::size_t i = 0;
876 
877  for ( i=0;i<fDelayLineArray.size();i++ )
878  {
879  index = fDelayLineArray.at ( i ).size();
880 
881  for ( j=0;j<index;j++ )
882  {
883  fDelayLineArray.at ( i ).at ( j ).Processed=kFALSE;
884  fDelayLineArray.at ( i ).at ( j ).LeftHits.clear();
885  fDelayLineArray.at ( i ).at ( j ).RightHits.clear();
886  fDelayLineArray.at ( i ).at ( j ).Hitscount.clear();
887  fDelayLineArray.at ( i ).at ( j ).Wire.clear();
888  }
889  }
890 
892 
893  for ( i=0;i<fReferenceData.size(); i++ )
894  {
895  fReferenceData.at ( i ).clear();
896  }
897  for( i=0;i<fReferenceMaster.size();i++)
898  fReferenceMaster.at(i).clear();
899  return;
900 }
901 
902 
903 
904 
906 {
907  options.AddOptions("Tracking options") ( "use-tdchit",
908  po::value<bool>()->default_bool_value(false),
909  "create TDC-based tree" );
910  options.AddOptions("Tracking options") ( "disable-wireoffset",
911  po::value<bool>()->default_bool_value(false),
912  "disable subtraction of t0 for every wire" );
913  options.AddOptions("Tracking options") ("R3-octant",
914  po::value<int>()->default_value(1),
915  "MD Package 2 of R3 is in front of" );
916 }
917 
919 {
920  fUseTDCHits=options.GetValue<bool> ( "use-tdchit" );
921  fDisableWireTimeOffset=options.GetValue<bool> ( "disable-wireoffset" );
922  fR3Octant=options.GetValue<int> ( "R3-octant" );
923 }
924 
925 
926 void QwDriftChamberVDC::ConstructHistograms ( TDirectory *folder, TString& prefix )
927 {
928  // If we have defined a subdirectory in the ROOT file, then change into it.
929  if ( folder ) folder->cd();
930  // Now create the histograms...
931  TString region = GetSubsystemName();
932  // Loop over the number of planes.
933 
934  const Short_t buffer_size = 2000;
935  Float_t bin_offset = -0.5;
936 
937  std::size_t total_plane_number = 0;
938  total_plane_number = fWiresPerPlane.size();
939 
940  TotHits.resize ( total_plane_number );
941  TOFP.resize ( total_plane_number );
942  TOFP_raw.resize ( total_plane_number );
943  WiresHit.resize ( total_plane_number );
944  TOFW.resize ( total_plane_number );
945  TOFW_raw.resize ( total_plane_number );
946  HitsWire.resize ( total_plane_number );
947 
948  std::size_t iplane = 0;
949  // std::cout << "QwDriftChamberVDC::ConstructHistograms, "
950  // << "we are contructing histograms with index from 0 to " <<total_plane_number
951  // << "\n"
952  // << "Thus, fWiresPerPlane.size() returns "
953  // << total_plane_number
954  // << " and its array definition is ["
955  // << total_plane_number
956  // << "]."
957  // << " And hist[i] <-> hist.at(i) <-> fWiresPerplane[i] <-> fWiresPerPlane.at(i)"
958  // << std::endl;
959 
960  // wire_per_plane is the number of wire per plane?
961  //
962  // we skip the first zero-th plane or wire histogram. thus
963  // i starts with '1'. hist[0] is NULL
964 
965  for ( iplane=1; iplane< total_plane_number; iplane++ )
966  {
967  // std::cout << "QwDriftChamberVDC iplane" << iplane << std::endl;
968  // push_back can "push" iplane = 1 into TotHits.at(0) ??
969  TotHits[iplane] = new TH1F (
970  Form ( "%s%sWiresPlane%zu", prefix.Data(), region.Data(), iplane ),
971  Form ( "Total hits on all wires in plane %zu", iplane ),
972  fWiresPerPlane[iplane], bin_offset, fWiresPerPlane[iplane]+bin_offset
973  );
974 
975  TotHits[iplane]->GetXaxis()->SetTitle ( "Wire #" );
976  TotHits[iplane]->GetYaxis()->SetTitle ( "Events" );
977 
978  WiresHit[iplane] = new TH1F (
979  Form ( "%s%sNumberHitsPlane%zu", prefix.Data(), region.Data(), iplane ),
980  Form ( "Number of Wires Hit in plane %zu",iplane ),
981  20, bin_offset, 20+bin_offset
982  );
983  WiresHit[iplane]->GetXaxis()->SetTitle ( "Wires Hit per Event" );
984  WiresHit[iplane]->GetYaxis()->SetTitle ( "Events" );
985 
986  HitsWire[iplane] = new TH2F (
987  Form ( "%s%sNumberHitsVsWirePlane%zu", prefix.Data(), region.Data(), iplane ),
988  Form ( "hits on all wires per event in plane %zu", iplane ),
989  fWiresPerPlane[iplane],bin_offset,fWiresPerPlane[iplane]+bin_offset,
990  7, -bin_offset, 7-bin_offset
991  );
992  HitsWire[iplane]->GetXaxis()->SetTitle ( "Wire Number" );
993  HitsWire[iplane]->GetYaxis()->SetTitle ( "Hits" );
994 
995  TOFP[iplane] = new TH1F (
996  Form ( "%s%sTimePlane%zu", prefix.Data(), region.Data(), iplane ),
997  Form ( "Subtracted time of flight for events in plane %zu", iplane ),
998  310,0,0
999  );
1000  TOFP[iplane] -> SetDefaultBufferSize ( buffer_size );
1001  TOFP[iplane] -> GetXaxis()->SetTitle ( "Time of Flight" );
1002  TOFP[iplane] -> GetYaxis()->SetTitle ( "Hits" );
1003 
1004 
1005  TOFP_raw[iplane] = new TH1F (
1006  Form ( "%s%sRawTimePlane%zu", prefix.Data(), region.Data(), iplane ),
1007  Form ( "Raw time of flight for events in plane %zu", iplane ),
1008  // 400,-65000,65000);
1009  310, 0,0
1010  );
1011  TOFP_raw[iplane] -> SetDefaultBufferSize ( buffer_size );
1012  TOFP_raw[iplane]->GetXaxis()->SetTitle ( "Time of Flight" );
1013  TOFP_raw[iplane]->GetYaxis()->SetTitle ( "Hits" );
1014 
1015  TOFW[iplane] = new TH2F (
1016  Form ( "%s%sTimeVsWirePlane%zu", prefix.Data(), region.Data(), iplane ),
1017  Form ( "Subtracted time of flight for each wire in plane %zu", iplane ),
1018  fWiresPerPlane[iplane], bin_offset, fWiresPerPlane[iplane]+bin_offset,
1019  100,-2000,2000
1020  );
1021  // why this range is not -65000 ??
1022  TOFW[iplane]->GetXaxis()->SetTitle ( "Wire Number" );
1023  TOFW[iplane]->GetYaxis()->SetTitle ( "Time of Flight" );
1024 
1025  TOFW_raw[iplane] = new TH2F (
1026  Form ( "%s%sRawTimeofFlightperWirePlane%zu", prefix.Data() ,region.Data(),iplane ),
1027  Form ( "Raw time of flight for each wire in plane %zu",iplane ),
1028  fWiresPerPlane[iplane], bin_offset, fWiresPerPlane[iplane]+bin_offset,
1029  100,-40000,65000
1030  );
1031  // why this range is not -65000 ??
1032  TOFW_raw[iplane]->GetXaxis()->SetTitle ( "Wire Number" );
1033  TOFW_raw[iplane]->GetYaxis()->SetTitle ( "Time of Flight" );
1034  }
1035  return;
1036 }
1037 
1038 
1039 
1041 {
1042 
1043  Bool_t local_debug = false;
1044  if ( not HasDataLoaded() ) return;
1045 
1046  QwDetectorID this_detid;
1047  QwDetectorInfo *this_det;
1048 
1049  std::vector<Int_t> wireshitperplane ( fWiresPerPlane.size(),0 );
1050 
1051  UInt_t raw_time = 0;
1052  Double_t time = 0.0;
1053 
1054  Int_t plane = 0;
1055  Int_t element = 0;
1056  EQwDetectorPackage package = kPackage1; // this is weird.....
1057 
1058  Int_t plane_index = 0;
1059 
1060  std::vector<QwHit>::iterator end=fTDCHits.end();
1061  for ( std::vector<QwHit>::iterator hit=fTDCHits.begin(); hit!=end; hit++ )
1062  {
1063 
1064  this_detid = hit->GetDetectorID();
1065  plane = this_detid.fPlane;
1066  element = this_detid.fElement;
1067  // package = //kthis_detid.fPackage;
1068 
1069  // I guess, plane_index is calculated from kPackageUp instead of kPackageUp and kPackageDown
1070  // See the FillRawTDCWordtop
1071  plane_index = 4* ( ( Int_t ) package -1 ) + plane;
1072 
1073  if ( plane<=0 or element<=0 )
1074  {
1075  if ( local_debug )
1076  {
1077  QwMessage << "QwDriftChamberVDC::FillHistograms: Bad plane or element index:"
1078  << " fPlane = " << plane
1079  << " fElement= " << element
1080  << QwLog::endl;
1081  }
1082  continue;
1083  }
1084 
1085  raw_time = hit->GetRawTime();
1086  time = hit->GetTimeNs();
1087 
1088  // Fill ToF histograms
1089  TOFP_raw[plane_index]->Fill ( raw_time );
1090  TOFW_raw[plane_index]->Fill ( element, raw_time );
1091 
1092 
1093  if ( local_debug )
1094  {
1095  QwMessage << " QwDriftChamberVDC::FillHistograms() plane " << plane
1096  << " element " << element
1097  << " package " << package
1098  << " plane_index " << plane_index
1099  << QwLog::endl;
1100  }
1101  }
1102 
1103  end=fWireHits.end();
1104  for ( std::vector<QwHit>::iterator hit1=fWireHits.begin(); hit1!=end; hit1++ )
1105  {
1106 
1107  this_detid = hit1->GetDetectorID();
1108  plane = this_detid.fPlane;
1109  element = this_detid.fElement;
1110  package = this_detid.fPackage;
1111 
1112  if ( plane<=0 or element<=0 )
1113  {
1114  if ( local_debug )
1115  {
1116  QwMessage << "QwDriftChamberVDC::FillHistograms: Bad plane or element index:"
1117  << " fPlane = " << plane
1118  << " fElement= " << element
1119  << QwLog::endl;
1120  }
1121  continue;
1122  }
1123 
1124  plane_index = 4* ( ( Int_t ) package -1 ) + plane;
1125  this_det = & ( fWireData.at ( plane_index ).at ( element-1 ) );
1126 
1127 
1128  if ( hit1->IsFirstDetectorHit() )
1129  {
1130  // If this is the first hit for this detector, then let's plot the
1131  // total number of hits this wire had.
1132  // std::cout << "this_det->GetNumHits: " << this_det->GetNumHits() << std::endl;
1133  HitsWire[plane_index]->Fill ( element,this_det->GetNumHits() );
1134 
1135  // // // Also increment the total number of events in whichthis wire was hit.
1136  TotHits[plane_index]->Fill ( element,1 );
1137  // Increment the number of wires hit in this plane
1138  wireshitperplane.at ( plane_index ) += 1;
1139  }
1140  // Fill ToF histograms
1141 
1142  time = hit1->GetTimeNs();
1143 
1144  TOFP[plane_index]->Fill ( time );
1145  TOFW[plane_index]->Fill ( element,time );
1146  this_det->ClearHits();
1147 
1148 
1149  }
1150 
1151  std::size_t iplane = 0;
1152 
1153  for ( iplane=1; iplane<fWiresPerPlane.size(); iplane++ )
1154  {
1155  WiresHit[iplane]->Fill ( wireshitperplane[iplane] );
1156  }
1157  return;
1158 }
1159 
1160 
1161 
1163 {
1164  //std::cout << "beginning to load t0 file... " << std::endl;
1165  //
1166  QwParameterFile mapstr ( t0_map.Data() );
1167  fDetectorMaps.insert(mapstr.GetParamFileNameContents());
1168 
1169  TString varname,varvalue;
1170  Int_t plane=0,wire=0;
1171  Double_t t0 = 0.0;
1172  EQwDetectorPackage package = kPackageNull;
1173 
1174  while ( mapstr.ReadNextLine() )
1175  {
1176  mapstr.TrimComment ( '!' );
1177  mapstr.TrimWhitespace();
1178  if ( mapstr.LineIsEmpty() ) continue;
1179  if ( mapstr.HasVariablePair ( "=",varname,varvalue ) )
1180  {
1181  varname.ToLower();
1182  if ( varname=="package" )
1183  {
1184  package = ( EQwDetectorPackage ) atoi ( varvalue.Data() );
1185  if ( package> ( Int_t ) fTimeWireOffsets.size() ) fTimeWireOffsets.resize ( package );
1186  }
1187  else if ( varname=="plane" )
1188  {
1189  //std::cout << "package: " << fTimeWireOffsets.at(package-1).size()<< std::endl;
1190  plane = atoi ( varvalue.Data() );
1191  if ( plane> ( Int_t ) fTimeWireOffsets.at ( package-1 ).size() ) fTimeWireOffsets.at ( package-1 ).resize ( plane );
1192  //std::cout << "plane: " << fTimeWireOffsets.at(package-1).size()<< std::endl;
1193 
1194  // To Siyuan, * : can package be obtained before plane in while loop? if plane is before package
1195  // we have at(-1), thus, if condition is always "false", I guess.
1196  // * : if, else if then can we expect something more?
1197  // from Han
1198  }
1199  continue;
1200  }
1201 
1202  wire = mapstr.GetTypedNextToken<Int_t>();
1203  t0 = mapstr.GetTypedNextToken<Int_t>();
1204 
1205  if ( wire > ( Int_t ) fTimeWireOffsets.at ( package-1 ).at ( plane-1 ).size() )
1206  {
1207  fTimeWireOffsets.at ( package-1 ).at ( plane-1 ).resize ( wire );
1208 
1209  fTimeWireOffsets.at ( package-1 ).at ( plane-1 ).at ( wire-1 ) = t0;
1210  }
1211 
1212  }
1213  //
1214  mapstr.Close(); // Close the file (ifstream)
1215  return OK;
1216 }
1217 
1218 
1220 {
1221  Int_t plane = 0;
1222  Int_t wire = 0;
1223  EQwDetectorPackage package = kPackageNull;
1224 
1225  Double_t t0_NS = 0.0;
1226 
1227  Double_t educated_guess_t0_correction_NS = 91;
1228  // Double_t educated_guess_t0_correction_AU = educated_guess_t0_correction_NS/fF1TDCResolutionNS;
1229 
1230  std::size_t nhits = fWireHits.size();
1231 
1232  for(std::size_t i=0;i<nhits;i++)
1233  {
1234  package = fWireHits.at(i).GetPackage();
1235  plane = fWireHits.at(i).GetPlane();
1236  wire = fWireHits.at(i).GetElement();
1237  t0_NS = fTimeWireOffsets.at ( package-1 ).at ( plane-1 ).at ( wire-1 );
1238  t0_NS += educated_guess_t0_correction_NS;
1239 
1240  // real_time=fWireHits.at(i).GetTime()-t0-91;
1241  fWireHits.at(i).SubtractTimeNsOffset(t0_NS); // time unit is ns Replace fTimeNs
1242  fWireHits.at(i).SubtractTimeAuOffset(t0_NS/fF1TDCResolutionNS); // time unit is a.u. Replace fTime
1243  }
1244  return;
1245 }
1246 
1247 
1248 
1250 {
1251 
1252  Double_t real_time_au = 0.0;
1253  Double_t tmpTime_au = 0.0;
1254  Double_t left_time_au = 0.0;
1255  Double_t right_time_au = 0.0;
1256 
1257  Int_t tmpCrate = 0;
1258  Int_t tmpModule = 0;
1259  Int_t tmpChan = 0;
1260  Int_t tmpbp = 0;
1261  Int_t tmpln = 0;
1262  Int_t wire_hit = 0;
1263  Int_t mycount = 0;
1264 
1265  Bool_t kDir = kTRUE;
1266  Bool_t tmpAM = kFALSE;
1267 
1268  std::vector<Int_t> wire_array;
1269  wire_array.clear();
1270 
1271  Int_t channel_offset = 64;
1272 
1273  QwElectronicsID tmpElectronicsID;
1274 
1275  // processing the delay line starts....
1276  std::vector<QwHit>::iterator end=fTDCHits.end();
1277  for ( std::vector<QwHit>::iterator iter=fTDCHits.begin();iter!=end;iter++ )
1278  {
1279  //this for loop will Fill in the tdc hits data Int_to the corresponding delay line
1280  tmpElectronicsID = iter->GetElectronicsID();
1281  tmpCrate = iter->GetSubbankID();
1282  tmpTime_au = iter->GetTime(); // a.u.
1283  tmpModule = tmpElectronicsID.fModule;
1284  tmpChan = tmpElectronicsID.fChannel;
1285 
1286  if ( tmpCrate==3 ) tmpChan+=channel_offset; // ROC10
1287 
1288  if ( fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fSide == 0 ) {
1290  .at( fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fBackPlane )
1291  .at( fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fLineNumber)
1292  .LeftHits.push_back ( tmpTime_au );
1293  }
1294  else {
1296  .at ( fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fBackPlane )
1297  .at ( fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fLineNumber )
1298  .RightHits.push_back ( tmpTime_au );
1299  }
1300  }
1301 
1302  for ( std::vector<QwHit>::iterator iter=fTDCHits.begin();iter!=end;iter++ )
1303  {
1304  tmpElectronicsID = iter->GetElectronicsID();
1305  tmpCrate = iter->GetSubbankID();
1306  // if(tmpCrate == 0) break;
1307  // tmpTime_au = iter->GetTime();
1308  tmpModule = tmpElectronicsID.fModule;
1309  tmpChan = tmpElectronicsID.fChannel;
1310  // Int_t tmpROC = tmpElectronicsID.fROC;
1311  if ( tmpCrate==3 ) tmpChan+=channel_offset; // ROC10
1312 
1313  tmpbp = fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fBackPlane;
1314  tmpln = fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fLineNumber;
1315 
1316  Int_t plane = fDelayLineArray.at ( tmpbp ).at ( tmpln ).fPlane ;
1317  Int_t octant = fDelayLineArray.at ( tmpbp ).at ( tmpln ).fOctant;
1318  EQwDetectorPackage package = fDelayLineArray.at ( tmpbp ).at ( tmpln ).fPackage;
1319  EQwDirectionID direction = fDelayLineArray.at ( tmpbp ).at ( tmpln ).fDirection;
1320 
1321  // QwMessage << "QwDriftChamberVDC::ProcessEvent() :"
1322  // << " plane = " << plane
1323  // << " direction = " << direction
1324  // << " package = " << package
1325  // << " roc = " << tmpROC
1326  // << " slot = " << tmpModule
1327  // << " chan = " << tmpChan
1328 
1329  // << QwLog::endl;
1330 
1331  if ( fDelayLineArray.at ( tmpbp ).at ( tmpln ).Processed == kFALSE ) //if this delay line has been Processed
1332  {
1333  wire_array.clear();
1334 
1335  if ( tmpbp==0 || tmpbp ==3 || tmpbp==4 || tmpbp==7 || tmpbp==8 || tmpbp==11 || tmpbp==12 || tmpbp==15 ) {
1336  kDir = kTRUE; //true means left-right
1337  }
1338  else {
1339  kDir = kFALSE;
1340  }
1341 
1342  fDelayLineArray.at ( tmpbp ).at ( tmpln ).ProcessHits ( kDir );
1343 
1344  std::size_t Wirecount = fDelayLineArray.at ( tmpbp ).at ( tmpln ).Wire.size();
1345  // std::cout << "Wirecount " << Wirecount << std::endl;
1346  for ( std::size_t i=0;i<Wirecount;i++ )
1347  {
1348  std::size_t Ambiguitycount = fDelayLineArray.at ( tmpbp ).at ( tmpln ).Wire.at ( i ).size(); //if there's a ambiguity, it's 2; if not, this is 1
1349  if ( Ambiguitycount==1 ) tmpAM = kFALSE;
1350  else tmpAM = kTRUE;
1351 
1352  Int_t order_L = fDelayLineArray.at ( tmpbp ).at ( tmpln ).Hitscount.at ( i ).first;
1353  Int_t order_R = fDelayLineArray.at ( tmpbp ).at ( tmpln ).Hitscount.at ( i ).second;
1354 
1355  left_time_au = fDelayLineArray.at ( tmpbp ).at ( tmpln ).LeftHits.at ( order_L );
1356  right_time_au = fDelayLineArray.at ( tmpbp ).at ( tmpln ).RightHits.at ( order_R );
1357 
1358  for ( std::size_t j=0;j<Ambiguitycount;++j )
1359  {
1360  real_time_au = ( left_time_au+right_time_au ) /2.0; // a.u.
1361 
1362  wire_hit = fDelayLineArray.at ( tmpbp ).at ( tmpln ).Wire.at ( i ).at ( j );
1363 
1364  wire_array.push_back ( wire_hit );
1365 
1366  mycount = count ( wire_array.begin(), wire_array.end(), wire_hit ) - 1;
1367 
1368  Int_t temp_Chan=0;
1369  if ( tmpCrate==3 ) temp_Chan=tmpChan-channel_offset;
1370  else temp_Chan=tmpChan;
1371 
1372  const QwDetectorInfo* local_info = fDetectorInfo.in(package).at(plane-1);
1373 
1374  QwHit NewQwHit ( tmpCrate, tmpModule, temp_Chan, mycount, kRegionID3, package, octant, plane, direction, wire_hit );
1375 
1376  NewQwHit.SetHitNumberR ( order_R );
1377  NewQwHit.SetDetectorInfo ( local_info );
1378  NewQwHit.SetAmbiguityID ( tmpAM, j );
1379 
1380  NewQwHit.SetTime ( real_time_au );
1381  NewQwHit.ApplyTimeCalibration( fF1TDCResolutionNS ); // Fill fTimeRes and fTimeNs in QwHit
1382 
1383  fWireData.at ( 4* ( package-1 ) +plane ).at ( wire_hit-1 ).PushHit ( ( Int_t ) real_time_au );
1384 
1385  fWireHits.push_back ( NewQwHit );
1386  }
1387  }
1388  }
1389  }
1390 }
1391 
1392 
1393 
1394 
1395 void QwDriftChamberVDC::LoadTtoDParameters ( TString ttod_map )
1396 {
1397 
1398  QwParameterFile mapstr ( ttod_map.Data() );
1399  fDetectorMaps.insert(mapstr.GetParamFileNameContents());
1400 
1401  while ( mapstr.ReadNextLine() )
1402  {
1403  mapstr.TrimComment ( '!' );
1404  mapstr.TrimWhitespace();
1405  if ( mapstr.LineIsEmpty() ) continue;
1406 
1407  Double_t t __attribute__((unused)) // unused but function call still required
1408  = mapstr.GetTypedNextToken<Double_t>();
1409  Double_t d = mapstr.GetTypedNextToken<Double_t>();
1410  fTtoDNumbers.push_back ( d );
1411  }
1412 
1413  mapstr.Close(); // Close the file (ifstream)
1414  return;
1415 }
QwDriftChamberVDC(TString name)
#define QwMessage
Predefined log drain for regular messages.
Definition: QwLog.h:50
std::vector< TH1F * > TOFP
std::vector< std::vector< Int_t > > fTDC_Index
bool invalid(QwHit &hit)
std::vector< TH1F * > WiresHit
std::map< TString, TString > fDetectorMaps
Definition: VQwSubsystem.h:322
std::vector< std::vector< Double_t > > fReferenceMaster
size_t fCurrentBankIndex
Name of this subsystem (the region).
#define default_bool_value(b)
Definition: QwOptions.h:51
void LoadTtoDParameters(TString ttod_map)
Int_t BuildWireDataStructure(const UInt_t chan, const EQwDetectorPackage package, const Int_t octant, const Int_t plane, const Int_t wire)
std::vector< Double_t > fTtoDNumbers
std::vector< TH2F * > HitsWire
std::vector< TH2F * > TOFW_raw
const QwGeometry in(const EQwRegionID &r) const
Get detectors in given region.
Definition: QwGeometry.h:92
static const UInt_t kLineNum
Double_t CalculateDriftDistance(Double_t drifttime, QwDetectorID detector)
An options class.
Definition: QwOptions.h:133
static UInt_t GetUInt(const TString &varvalue)
void ProcessOptions(QwOptions &options)
Process the command line options.
Bool_t HasDataLoaded() const
Definition: VQwSubsystem.h:94
Double_t GetReferenceTimeAU(Int_t bank_index, TString name)
static const Int_t kCodaMasterPlaneNumber
void SetHitNumberR(const Int_t hitcountr)
Definition: QwHit.h:114
static const UInt_t kBackPlaneNum
QwOptions gQwOptions
Definition: QwOptions.cc:27
std::vector< TH2F * > TOFW
EQwDetectorPackage
Definition: QwTypes.h:70
virtual void ConstructHistograms()
Construct the histograms for this subsystem.
Definition: VQwSubsystem.h:209
std::vector< TH1F * > TOFP_raw
po::options_description_easy_init AddOptions(const std::string &blockname="Specialized options")
Add an option to a named block or create new block.
Definition: QwOptions.h:164
Int_t fElement
trace number for R1; wire number for R2 &amp; R3; PMT number for others
Definition: QwTypes.h:253
T GetValue(const std::string &key)
Get a templated value.
Definition: QwOptions.h:240
static void DefineOptions()
Define options function (note: no virtual static functions in C++)
Definition: VQwSubsystem.h:88
std::vector< std::vector< std::vector< Double_t > > > fTimeWireOffsets
void SetTime(const Double_t time)
Definition: QwHit.h:124
Int_t LinkReferenceChannel(const UInt_t chan, const Int_t plane, const Int_t wire)
std::vector< std::vector< QwDetectorID > > fTDCPtrs
QwGeometry fDetectorInfo
Geometry information of this subsystem.
const Double_t & GetDriftDistance() const
Definition: QwHit.h:92
Double_t ReferenceSignalCorrection(Double_t raw_time, Double_t ref_time, Int_t bank_index, Int_t slot)
std::vector< std::vector< QwDelayLine > > fDelayLineArray
Int_t LoadTimeWireOffset(TString t0_map)
void SetReferenceSignal(Int_t bank_index, Int_t slot, Int_t chan, UInt_t data, Bool_t debug=false)
Int_t fPlane
R or theta index for R1; plane index for R2 &amp; R3.
Definition: QwTypes.h:251
QwF1TDContainer * fF1TDContainer
Bool_t WireMatches(EQwRegionID region, EQwDetectorPackage package, Int_t plane, Int_t wire)
Definition: QwHit.cc:357
std::vector< TH1F * > TotHits
The pure virtual base class of all subsystems.
Definition: VQwSubsystem.h:59
#define OK
void SetDetectorInfo(const QwDetectorInfo *detectorinfo)
Set the detector info pointer.
std::vector< std::vector< QwDelayLineID > > fDelayLinePtrs
std::vector< std::vector< Double_t > > fReferenceData
Int_t LoadChannelMap(TString mapfile)
Mandatory map file definition.
void SetAmbiguityID(const Bool_t amelement, const Bool_t amlr)
Definition: QwHit.cc:333
Int_t RegisterSubbank(const UInt_t bank_id)
void FillRawTDCWord(Int_t bank_index, Int_t slot_num, Int_t chan, UInt_t data)
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
Int_t GetTDCIndex(size_t bank_index, size_t slot_num) const
EQwDirectionID
Definition: QwTypes.h:41
Int_t RegisterSlotNumber(const UInt_t slot_id)
static const Int_t kReferenceChannelPlaneNumber
std::vector< QwHit > & fWireHits
Hit structure uniquely defining each hit.
Definition: QwHit.h:43
std::vector< QwHit > fTDCHits
void ApplyTimeCalibration(Double_t f1tdc_resolution_ns)
Definition: QwHit.h:146
void FillDriftDistanceToHits()
void FillHistograms()
Fill the histograms for this subsystem.
std::vector< Int_t > fWiresPerPlane
#define RegisterSubsystemFactory(A)
Definition: QwFactory.h:230
TString GetSubsystemName() const
Definition: VQwSubsystem.h:93
Int_t RegisterROCNumber(const UInt_t roc_id, const UInt_t bank_id)
Tell the object that it will decode data from this ROC and sub-bank.
void ReadEvent(TString &)
F1TDCReferenceContainer * fF1RefContainer
std::vector< std::vector< QwDetectorInfo > > fWireData
void SetDataLoaded(Bool_t flag)
Definition: VQwSubsystem.h:305