13 #include "boost/bind.hpp"
30 std::vector<QwDelayLine> temp;
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;
46 Bool_t local_debug =
false;
49 TString reference_name1 =
"MasterTrigger";
50 TString reference_name2 =
"CopyMasterTrigger";
52 std::vector<QwHit>::iterator end=
fTDCHits.end();
53 for ( std::vector<QwHit>::iterator hit=
fTDCHits.begin(); hit!=end; hit++ )
56 bank_index = hit -> GetSubbankID();
57 slot_num = hit -> GetModule();
58 raw_time_arb_unit = (Double_t) hit -> GetRawTime();
59 package = hit -> GetPackage();
74 reference_name1 =
"TrigScintPkg1";
77 reference_name1 =
"TrigScintPkg2";
80 reference_name1 =
"MasterTrigger";
87 if(ref_time_arb_unit== 0.0 ) {
96 hit -> SetTime(time_arb_unit);
97 hit -> SetRawRefTime((UInt_t) ref_time_arb_unit);
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
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;
284 Int_t index = (Int_t) (dt/resolution);
286 Int_t maximum_allowed_drifttime_by_john = 310;
287 Int_t minimum_allowed_drifttime_by_john = 0;
289 if(dt >= minimum_allowed_drifttime_by_john && dt < maximum_allowed_drifttime_by_john) {
295 distance_cm = 0.1*distance_mm;
303 Bool_t local_debug =
false;
305 if (local_debug) printf(
"\n");
308 if ( tdcindex not_eq -1 )
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;
335 if ( plane == -1 or wire == -1 )
342 std::cout <<
" -------------------------"
343 <<
" plane " << plane
344 <<
" slot " << slot_num
355 std::cout <<
" -------------------------" <<
" plane " << plane
356 <<
" slot " << slot_num
404 Int_t r3_wire_number_per_plane = 279;
426 real_size = 4 * ( ( Int_t ) package-1 ) +plane;
445 bool temp_local_debug =
false;
456 if ( temp_local_debug )
458 std::cout <<
"wire #" << i
468 for (
size_t j=0; j<
fTDC_Index.at ( i ).size(); j++ )
471 if ( mytdc not_eq -1 )
473 for (
size_t k=0; k<
fTDCPtrs.at ( mytdc ).size(); k++ )
475 Int_t
package = fTDCPtrs.at ( mytdc ).at ( k ).fPackage;
476 Int_t plane =
fTDCPtrs.at ( mytdc ).at ( k ).fPlane;
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++ )
487 fWireData.at ( 4* ( package-1 ) +plane ).at ( wire-1 ).SetElectronics ( i,j,k );
489 if ( temp_local_debug )
491 std::cout <<
"mytdc " << mytdc
493 <<
" plane " << plane
494 <<
" (i j k) (" << i <<
" " << j <<
" "<< k <<
")"
646 TString varname,varvalue;
651 UInt_t plnum,firstwire,LR;
655 plnum = firstwire = LR = 0;
658 Bool_t IsFirstChannel = kTRUE;
660 std::vector<Double_t> tmpWindows;
665 std::string string_a;
666 std::pair<Double_t,Double_t> pair_a;
668 Int_t extra_reference_channel_number_for_R3 = 97;
670 while ( mapstr.ReadNextLine() )
672 mapstr.TrimComment (
'!' );
673 mapstr.TrimWhitespace();
674 if ( mapstr.LineIsEmpty() )
continue;
676 if ( mapstr.HasVariablePair (
"=",varname,varvalue ) )
682 value = atol ( varvalue.Data() );
684 if ( varname ==
"roc" )
688 else if ( varname==
"bank" )
692 else if ( varname ==
"slot" )
699 channum = mapstr.GetTypedNextToken<Int_t>();
700 bpnum = mapstr.GetTypedNextToken<Int_t>();
701 name = mapstr.GetTypedNextToken<TString>();
711 if ( bpnum != extra_reference_channel_number_for_R3 ) {
725 if ( channum ==0 and bpnum ==0 )
727 if ( IsFirstChannel == kTRUE ) IsFirstChannel = kFALSE;
732 LR = mapstr.GetTypedNextToken<Int_t>();
736 pknum = mapstr.GetTypedNextToken<TString>();
737 plnum = mapstr.GetTypedNextToken<Int_t>();
738 dir = mapstr.GetTypedNextToken<TString>();
739 firstwire= mapstr.GetTypedNextToken<Int_t>();
749 else if ( pknum==
"v" )
759 string_a = mapstr.GetTypedNextToken<std::string>();
760 while ( string_a.size() !=0 )
762 tmpWindows.push_back ( atof ( string_a.c_str() ) );
763 string_a = mapstr.GetTypedNextToken<std::string>();
776 for (
size_t i=0;i<tmpWindows.size() /2;i++ )
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 );
803 TString varname,varvalue;
808 Double_t signal = 0.0;
815 while ( mapstr.ReadNextLine() )
817 mapstr.TrimComment (
'!' );
818 mapstr.TrimWhitespace();
819 if ( mapstr.LineIsEmpty() )
continue;
820 if ( mapstr.HasVariablePair (
"=",varname,varvalue ) )
823 value = atol ( varvalue.Data() );
827 slotnum = mapstr.GetTypedNextToken<Int_t>();
828 channum = mapstr.GetTypedNextToken<Int_t>();
829 signal = mapstr.GetTypedNextToken<Double_t>();
831 fTDCHits.push_back (
QwHit ( value,slotnum,channum,0,
kRegionID3,package,0,0,direction,0, ( UInt_t ) signal ) );
853 std::vector<QwHit>::iterator it;
873 std::size_t index = 0;
881 for ( j=0;j<index;j++ )
907 options.
AddOptions(
"Tracking options") (
"use-tdchit",
909 "create TDC-based tree" );
910 options.
AddOptions(
"Tracking options") (
"disable-wireoffset",
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" );
929 if ( folder ) folder->cd();
934 const Short_t buffer_size = 2000;
935 Float_t bin_offset = -0.5;
937 std::size_t total_plane_number = 0;
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 );
948 std::size_t iplane = 0;
965 for ( iplane=1; iplane< total_plane_number; iplane++ )
970 Form (
"%s%sWiresPlane%zu", prefix.Data(), region.Data(), iplane ),
971 Form (
"Total hits on all wires in plane %zu", iplane ),
975 TotHits[iplane]->GetXaxis()->SetTitle (
"Wire #" );
976 TotHits[iplane]->GetYaxis()->SetTitle (
"Events" );
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
983 WiresHit[iplane]->GetXaxis()->SetTitle (
"Wires Hit per Event" );
984 WiresHit[iplane]->GetYaxis()->SetTitle (
"Events" );
987 Form (
"%s%sNumberHitsVsWirePlane%zu", prefix.Data(), region.Data(), iplane ),
988 Form (
"hits on all wires per event in plane %zu", iplane ),
990 7, -bin_offset, 7-bin_offset
992 HitsWire[iplane]->GetXaxis()->SetTitle (
"Wire Number" );
993 HitsWire[iplane]->GetYaxis()->SetTitle (
"Hits" );
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 ),
1000 TOFP[iplane] -> SetDefaultBufferSize ( buffer_size );
1001 TOFP[iplane] -> GetXaxis()->SetTitle (
"Time of Flight" );
1002 TOFP[iplane] -> GetYaxis()->SetTitle (
"Hits" );
1006 Form (
"%s%sRawTimePlane%zu", prefix.Data(), region.Data(), iplane ),
1007 Form (
"Raw time of flight for events in plane %zu", iplane ),
1011 TOFP_raw[iplane] -> SetDefaultBufferSize ( buffer_size );
1012 TOFP_raw[iplane]->GetXaxis()->SetTitle (
"Time of Flight" );
1013 TOFP_raw[iplane]->GetYaxis()->SetTitle (
"Hits" );
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 ),
1022 TOFW[iplane]->GetXaxis()->SetTitle (
"Wire Number" );
1023 TOFW[iplane]->GetYaxis()->SetTitle (
"Time of Flight" );
1026 Form (
"%s%sRawTimeofFlightperWirePlane%zu", prefix.Data() ,region.Data(),iplane ),
1027 Form (
"Raw time of flight for each wire in plane %zu",iplane ),
1032 TOFW_raw[iplane]->GetXaxis()->SetTitle (
"Wire Number" );
1033 TOFW_raw[iplane]->GetYaxis()->SetTitle (
"Time of Flight" );
1043 Bool_t local_debug =
false;
1051 UInt_t raw_time = 0;
1052 Double_t time = 0.0;
1058 Int_t plane_index = 0;
1060 std::vector<QwHit>::iterator end=
fTDCHits.end();
1061 for ( std::vector<QwHit>::iterator hit=
fTDCHits.begin(); hit!=end; hit++ )
1064 this_detid = hit->GetDetectorID();
1065 plane = this_detid.
fPlane;
1071 plane_index = 4* ( ( Int_t ) package -1 ) + plane;
1073 if ( plane<=0 or element<=0 )
1077 QwMessage <<
"QwDriftChamberVDC::FillHistograms: Bad plane or element index:"
1078 <<
" fPlane = " << plane
1079 <<
" fElement= " << element
1085 raw_time = hit->GetRawTime();
1086 time = hit->GetTimeNs();
1089 TOFP_raw[plane_index]->Fill ( raw_time );
1090 TOFW_raw[plane_index]->Fill ( element, raw_time );
1095 QwMessage <<
" QwDriftChamberVDC::FillHistograms() plane " << plane
1096 <<
" element " << element
1097 <<
" package " <<
package
1098 << " plane_index " << plane_index
1104 for ( std::vector<QwHit>::iterator hit1=
fWireHits.begin(); hit1!=end; hit1++ )
1107 this_detid = hit1->GetDetectorID();
1108 plane = this_detid.
fPlane;
1110 package = this_detid.fPackage;
1112 if ( plane<=0 or element<=0 )
1116 QwMessage <<
"QwDriftChamberVDC::FillHistograms: Bad plane or element index:"
1117 <<
" fPlane = " << plane
1118 <<
" fElement= " << element
1124 plane_index = 4* ( ( Int_t ) package -1 ) + plane;
1125 this_det = & (
fWireData.at ( plane_index ).at ( element-1 ) );
1128 if ( hit1->IsFirstDetectorHit() )
1136 TotHits[plane_index]->Fill ( element,1 );
1138 wireshitperplane.at ( plane_index ) += 1;
1142 time = hit1->GetTimeNs();
1144 TOFP[plane_index]->Fill ( time );
1145 TOFW[plane_index]->Fill ( element,time );
1151 std::size_t iplane = 0;
1155 WiresHit[iplane]->Fill ( wireshitperplane[iplane] );
1169 TString varname,varvalue;
1170 Int_t plane=0,wire=0;
1174 while ( mapstr.ReadNextLine() )
1176 mapstr.TrimComment (
'!' );
1177 mapstr.TrimWhitespace();
1178 if ( mapstr.LineIsEmpty() )
continue;
1179 if ( mapstr.HasVariablePair (
"=",varname,varvalue ) )
1182 if ( varname==
"package" )
1184 package = ( EQwDetectorPackage ) atoi ( varvalue.Data() );
1187 else if ( varname==
"plane" )
1190 plane = atoi ( varvalue.Data() );
1202 wire = mapstr.GetTypedNextToken<Int_t>();
1203 t0 = mapstr.GetTypedNextToken<Int_t>();
1205 if ( wire > ( Int_t )
fTimeWireOffsets.at ( package-1 ).at ( plane-1 ).size() )
1225 Double_t t0_NS = 0.0;
1227 Double_t educated_guess_t0_correction_NS = 91;
1232 for(std::size_t i=0;i<nhits;i++)
1234 package = fWireHits.at(i).GetPackage();
1238 t0_NS += educated_guess_t0_correction_NS;
1241 fWireHits.at(i).SubtractTimeNsOffset(t0_NS);
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;
1258 Int_t tmpModule = 0;
1265 Bool_t kDir = kTRUE;
1266 Bool_t tmpAM = kFALSE;
1268 std::vector<Int_t> wire_array;
1271 Int_t channel_offset = 64;
1276 std::vector<QwHit>::iterator end=
fTDCHits.end();
1277 for ( std::vector<QwHit>::iterator iter=
fTDCHits.begin();iter!=end;iter++ )
1280 tmpElectronicsID = iter->GetElectronicsID();
1281 tmpCrate = iter->GetSubbankID();
1282 tmpTime_au = iter->GetTime();
1283 tmpModule = tmpElectronicsID.
fModule;
1284 tmpChan = tmpElectronicsID.
fChannel;
1286 if ( tmpCrate==3 ) tmpChan+=channel_offset;
1288 if (
fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fSide == 0 ) {
1292 .LeftHits.push_back ( tmpTime_au );
1296 .at (
fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fBackPlane )
1297 .at (
fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fLineNumber )
1298 .RightHits.push_back ( tmpTime_au );
1302 for ( std::vector<QwHit>::iterator iter=
fTDCHits.begin();iter!=end;iter++ )
1304 tmpElectronicsID = iter->GetElectronicsID();
1305 tmpCrate = iter->GetSubbankID();
1308 tmpModule = tmpElectronicsID.
fModule;
1309 tmpChan = tmpElectronicsID.
fChannel;
1311 if ( tmpCrate==3 ) tmpChan+=channel_offset;
1313 tmpbp =
fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fBackPlane;
1314 tmpln =
fDelayLinePtrs.at ( tmpModule ).at ( tmpChan ).fLineNumber;
1335 if ( tmpbp==0 || tmpbp ==3 || tmpbp==4 || tmpbp==7 || tmpbp==8 || tmpbp==11 || tmpbp==12 || tmpbp==15 ) {
1344 std::size_t Wirecount =
fDelayLineArray.at ( tmpbp ).at ( tmpln ).Wire.size();
1346 for ( std::size_t i=0;i<Wirecount;i++ )
1348 std::size_t Ambiguitycount =
fDelayLineArray.at ( tmpbp ).at ( tmpln ).Wire.at ( i ).size();
1349 if ( Ambiguitycount==1 ) tmpAM = kFALSE;
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;
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 );
1358 for ( std::size_t j=0;j<Ambiguitycount;++j )
1360 real_time_au = ( left_time_au+right_time_au ) /2.0;
1362 wire_hit =
fDelayLineArray.at ( tmpbp ).at ( tmpln ).Wire.at ( i ).at ( j );
1364 wire_array.push_back ( wire_hit );
1366 mycount = count ( wire_array.begin(), wire_array.end(), wire_hit ) - 1;
1369 if ( tmpCrate==3 ) temp_Chan=tmpChan-channel_offset;
1370 else temp_Chan=tmpChan;
1374 QwHit NewQwHit ( tmpCrate, tmpModule, temp_Chan, mycount,
kRegionID3, package, octant, plane, direction, wire_hit );
1380 NewQwHit.
SetTime ( real_time_au );
1383 fWireData.at ( 4* ( package-1 ) +plane ).at ( wire_hit-1 ).PushHit ( ( Int_t ) real_time_au );
1401 while ( mapstr.ReadNextLine() )
1403 mapstr.TrimComment (
'!' );
1404 mapstr.TrimWhitespace();
1405 if ( mapstr.LineIsEmpty() )
continue;
1407 Double_t t __attribute__((unused))
1408 = mapstr.GetTypedNextToken<Double_t>();
1409 Double_t d = mapstr.GetTypedNextToken<Double_t>();
QwDriftChamberVDC(TString name)
#define QwMessage
Predefined log drain for regular messages.
std::vector< TH1F * > TOFP
std::vector< std::vector< Int_t > > fTDC_Index
std::vector< TH1F * > WiresHit
std::map< TString, TString > fDetectorMaps
std::vector< std::vector< Double_t > > fReferenceMaster
size_t fCurrentBankIndex
Name of this subsystem (the region).
#define default_bool_value(b)
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.
static const UInt_t kLineNum
Double_t fF1TDCResolutionNS
Double_t CalculateDriftDistance(Double_t drifttime, QwDetectorID detector)
static UInt_t GetUInt(const TString &varvalue)
void ProcessOptions(QwOptions &options)
Process the command line options.
void SubtractWireTimeOffset()
Bool_t HasDataLoaded() const
Double_t GetReferenceTimeAU(Int_t bank_index, TString name)
static const Int_t kCodaMasterPlaneNumber
void SetHitNumberR(const Int_t hitcountr)
static const UInt_t kBackPlaneNum
std::vector< TH2F * > TOFW
virtual void ConstructHistograms()
Construct the histograms for this subsystem.
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.
Int_t fElement
trace number for R1; wire number for R2 & R3; PMT number for others
T GetValue(const std::string &key)
Get a templated value.
Int_t AddChannelDefinition()
static void DefineOptions()
Define options function (note: no virtual static functions in C++)
std::vector< std::vector< std::vector< Double_t > > > fTimeWireOffsets
void SetTime(const Double_t time)
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
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 & R3.
QwF1TDContainer * fF1TDContainer
Bool_t WireMatches(EQwRegionID region, EQwDetectorPackage package, Int_t plane, Int_t wire)
std::vector< TH1F * > TotHits
The pure virtual base class of all subsystems.
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)
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.
Int_t GetTDCIndex(size_t bank_index, size_t slot_num) const
Int_t RegisterSlotNumber(const UInt_t slot_id)
static const Int_t kReferenceChannelPlaneNumber
std::vector< QwHit > & fWireHits
Hit structure uniquely defining each hit.
std::vector< QwHit > fTDCHits
void ApplyTimeCalibration(Double_t f1tdc_resolution_ns)
void FillDriftDistanceToHits()
void FillHistograms()
Fill the histograms for this subsystem.
std::vector< Int_t > fWiresPerPlane
#define RegisterSubsystemFactory(A)
TString GetSubsystemName() const
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
Bool_t fDisableWireTimeOffset
std::vector< std::vector< QwDetectorInfo > > fWireData
void SubtractReferenceTimes()
void SetDataLoaded(Bool_t flag)