61 TString varname, varvalue;
63 Int_t currentrocread=0;
64 Int_t currentbankread=0;
65 Int_t currentsubbankindex=-1;
69 fDetectorMaps.insert(mapstr.GetParamFileNameContents());
70 while (mapstr.ReadNextLine()) {
72 mapstr.TrimWhitespace();
73 if (mapstr.LineIsEmpty())
continue;
75 if (mapstr.HasVariablePair(
"=", varname, varvalue)) {
79 if (varname ==
"roc") {
81 RegisterROCNumber(value,0);
82 }
else if (varname ==
"bank") {
83 currentbankread=value;
84 RegisterSubbank(value);
85 if(currentsubbankindex!=GetSubbankIndex(currentrocread,currentbankread))
86 currentsubbankindex=GetSubbankIndex(currentrocread,currentbankread);
90 TString modtype = mapstr.GetTypedNextToken<TString>();
91 UInt_t modnum = mapstr.GetTypedNextToken<UInt_t>();
92 UInt_t channum __attribute__ ((unused))
93 = mapstr.GetTypedNextToken<UInt_t>();
94 TString dettype = mapstr.GetTypedNextToken<TString>();
95 TString name = mapstr.GetTypedNextToken<TString>();
96 Int_t plane = mapstr.GetTypedNextToken<Int_t>();
97 Int_t stripnum = mapstr.GetTypedNextToken<Int_t>();
99 if (modtype ==
"V1495") {
100 if (dettype ==
"eaccum") {
102 fMapping[currentsubbankindex] = kV1495Accum;
108 if (fdettype >= (Int_t) fSubbankIndex.size())
109 fSubbankIndex.resize(fdettype+1);
110 if (modnum >= fSubbankIndex[fdettype].size()) {
111 fSubbankIndex[fdettype].push_back(modnum);
112 fSubbankIndex[fdettype][modnum] = currentsubbankindex;
114 if (plane >= (Int_t) fStripsRaw.size())
115 fStripsRaw.resize(plane);
116 if (stripnum >= (Int_t) fStripsRaw[plane-1].size())
117 fStripsRaw[plane-1].push_back(0);
120 if (plane >= (Int_t) fStrips.size())
121 fStrips.resize(plane);
122 if (stripnum >= (Int_t) fStrips[plane-1].size())
123 fStrips[plane-1].push_back(0);
126 else if (dettype ==
"escalers") {
128 fMapping[currentsubbankindex] = kV1495Scaler;
130 if (fdettype >= (Int_t) fSubbankIndex.size())
131 fSubbankIndex.resize(fdettype+1);
132 if (modnum >= fSubbankIndex[fdettype].size()) {
133 fSubbankIndex[fdettype].push_back(modnum);
134 fSubbankIndex[fdettype][modnum] = currentsubbankindex;
136 if (plane >= (Int_t) fStripsRawScal.size())
137 fStripsRawScal.resize(plane);
138 if (stripnum >= (Int_t) fStripsRawScal[plane-1].size())
139 fStripsRawScal[plane-1].push_back(0);
142 else if (dettype ==
"eaccum_v2") {
144 fMapping[currentsubbankindex] = kV1495Accum_v2;
146 if (fdettype >= (Int_t) fSubbankIndex.size())
147 fSubbankIndex.resize(fdettype+1);
148 if (modnum >= fSubbankIndex[fdettype].size()) {
149 fSubbankIndex[fdettype].push_back(modnum);
150 fSubbankIndex[fdettype][modnum] = currentsubbankindex;
152 if (plane >= (Int_t) fStripsRaw_v2.size())
153 fStripsRaw_v2.resize(plane);
154 if (stripnum >= (Int_t) fStripsRaw_v2[plane-1].size())
155 fStripsRaw_v2[plane-1].push_back(0);
158 else if (dettype ==
"esingle") {
160 fMapping[currentsubbankindex] = kV1495Single;
162 if (fdettype >= (Int_t) fSubbankIndex.size())
163 fSubbankIndex.resize(fdettype+1);
164 if (modnum >= fSubbankIndex[fdettype].size()) {
165 fSubbankIndex[fdettype].push_back(modnum);
166 fSubbankIndex[fdettype][modnum] = currentsubbankindex;
168 if (plane >= (Int_t) fStripsRawEv.size())
169 fStripsRawEv.resize(plane);
170 if (stripnum >= (Int_t) fStripsRawEv[plane-1].size())
171 fStripsRawEv[plane-1].push_back(0);
173 if (plane >= (Int_t) fStripsEv.size())
174 fStripsEv.resize(plane);
175 if (stripnum >= (Int_t) fStripsEv[plane-1].size())
176 fStripsEv[plane-1].push_back(0);
180 cout<<
"***found an undefined data type "<<
notGood<<
" times"<<endl;
181 cout<<
"dettype: "<<dettype<<endl;
200 while (mapstr.ReadNextLine()) {
202 mapstr.TrimWhitespace();
203 if (mapstr.LineIsEmpty())
continue;
205 TString varname = mapstr.GetTypedNextToken<TString>();
207 varname.Remove(TString::kBoth,
' ');
208 mapstr.GetTypedNextToken<Double_t>();
225 const Int_t numberofWordPerEv = 5;
226 UInt_t words_read = 0;
227 UInt_t bitwise_mask = 0;
231 Int_t subbank = GetSubbankIndex(roc_id, bank_id);
232 if (subbank >= 0 && num_words > 0) {
234 switch (fMapping[subbank]) {
237 for (Int_t k = 0; k < NModules; k++) {
238 if (fSubbankIndex[1][k]==subbank) {
242 for (Int_t i = 0; i < StripsPerModule; i++) {
243 Int_t j = k*StripsPerModule+i;
254 fStripsRaw[0][j] = (buffer[i] & 0xff000000) >> 24;
255 fStripsRaw[1][j] = (buffer[i] & 0x00ff0000) >> 16;
256 fStripsRaw[2][j] = (buffer[i] & 0x0000ff00) >> 8;
257 fStripsRaw[3][j] = (buffer[i] & 0x000000ff);
261 if (num_words != words_read) {
262 QwError <<
"QwComptonElectronDetector: There were "
263 << num_words - words_read
264 <<
" leftover words after decoding everything we recognize in accum data"
266 <<
" in ROC " << roc_id <<
", bank " << bank_id <<
"."
277 for (Int_t jj = 0; jj < NModules; jj++) {
278 if (fSubbankIndex[0][jj]==subbank) {
280 div_output = div(num_words,numberofWordPerEv);
281 Int_t numbOfEvDataSet = div_output.quot;
283 Int_t evHitMap[numbOfEvDataSet][NPlanes][StripsPerPlane];
285 for (Int_t
m = 0;
m < numbOfEvDataSet;
m++) {
286 for (Int_t i = 0; i <NPlanes; i++) {
287 for (Int_t j = 0; j < StripsPerPlane; j++) {
288 evHitMap[
m][i][j] = 0;
293 if (div_output.rem) {
294 printf(
"\n\n***Error***:Event Data suspicious. Report to an expert:\n");
295 printf(
",found %d number of words which is not a multiple of 5!\n\n",num_words);
298 for (Int_t
m = 0;
m < numbOfEvDataSet;
m++) {
299 for (Int_t i = 0; i < NPlanes; i++) {
300 Int_t bufferIndex =
m*(NPlanes+1) + i;
301 for (Int_t j = 0; j < StripsPerModule; j++) {
302 Int_t k = jj*StripsPerModule + j;
303 bitwise_mask = (0x1 << j);
304 evHitMap[
m][i][k] = (buffer[bufferIndex] & bitwise_mask) >> j;
311 for (Int_t k = 0; k < StripsPerPlane; k++) {
312 for (Int_t i = 0; i < NPlanes; i++) {
313 for (Int_t
m = 0;
m < numbOfEvDataSet;
m++) {
314 fStripsRawEv[i][k] += evHitMap[
m][i][k];
319 if (num_words != words_read) {
320 QwError <<
"QwComptonElectronDetector: There were "
321 << num_words - words_read
322 <<
" leftover words after decoding everything recognizable in event data."
333 for (Int_t k = 0; k < NModules; k++) {
334 if (fSubbankIndex[2][k]==subbank) {
338 for (Int_t i = 0; i < StripsPerModule; i++) {
339 Int_t j = k*StripsPerModule + i;
340 fStripsRawScal[0][j] = (buffer[i] & 0xff000000) >> 24;
341 fStripsRawScal[1][j] = (buffer[i] & 0x00ff0000) >> 16;
342 fStripsRawScal[2][j] = (buffer[i] & 0x0000ff00) >> 8;
343 fStripsRawScal[3][j] = (buffer[i] & 0x000000ff);
348 if (num_words != words_read) {
349 QwError <<
"QwComptonElectronDetector: There were "
350 << num_words - words_read
351 <<
" leftover words after decoding everything we recognize in v1495 scaler data"
353 <<
" in ROC " << roc_id <<
", bank " << bank_id <<
"."
364 for (Int_t k = 0; k < NModules; k++) {
365 if (fSubbankIndex[3][k]==subbank) {
369 for (Int_t i = 0; i < StripsPerModule; i++) {
370 Int_t j = k*StripsPerModule+i;
371 fStripsRaw_v2[0][j] = (buffer[i] & 0xff000000) >> 24;
372 fStripsRaw_v2[1][j] = (buffer[i] & 0x00ff0000) >> 16;
373 fStripsRaw_v2[2][j] = (buffer[i] & 0x0000ff00) >> 8;
374 fStripsRaw_v2[3][j] = (buffer[i] & 0x000000ff);
378 if (num_words != words_read) {
379 QwError <<
"QwComptonElectronDetector: There were "
380 << num_words - words_read
381 <<
" leftover words after decoding everything we recognize in version 2 accum data"
383 <<
" in ROC " << roc_id <<
", bank " << bank_id <<
"."
395 QwError <<
"QwComptonElectronDetector: Unknown data channel type for ROC "
396 << roc_id <<
", bank 0x" <<std::hex<<bank_id << std::dec<<
QwLog::endl;
408 return IsGoodEvent();
445 Int_t subBankiterate = bank_id==0x207 ? 0 : 32;
446 Int_t subBankmodule = bank_id==0x207 ? 0 : 1;
448 slave_header.push_back(buffer[0]);
449 firmwareRevision.push_back(buffer[1]);
450 portAmask.push_back(buffer[2]);
451 portBmask.push_back(buffer[3]);
452 portDmask.push_back(buffer[4]);
453 portEmask.push_back(buffer[5]);
454 widthInfo.push_back(buffer[6]);
455 trigInfo.push_back (buffer[7]);
457 UInt_t bitwise_mask=0;
458 for (Int_t s = 0; s < StripsPerModule; s++) {
459 bitwise_mask = (0x1 << s);
460 fPlane1Mask[s+subBankiterate] = ((portAmask.back() & bitwise_mask) >> s);
463 for (Int_t s = 0; s < StripsPerModule; s++) {
464 bitwise_mask = (0x1 << s);
465 fPlane2Mask[s+subBankiterate] = ((portBmask.back() & bitwise_mask) >> s);
468 for (Int_t s = 0; s < StripsPerModule; s++) {
469 bitwise_mask = (0x1 << s);
470 fPlane3Mask[s+subBankiterate] = ((portDmask.back() & bitwise_mask) >> s);
473 for (Int_t s = 0; s < StripsPerModule; s++) {
474 bitwise_mask = (0x1 << s);
475 fPlane4Mask[s+subBankiterate] = ((portEmask.back() & bitwise_mask) >> s);
478 fFirmwareRevision[subBankmodule] = firmwareRevision.back();
480 fPWTL[subBankmodule] =(widthInfo.back() & 0xff000000) >> 24;
481 fPWTL2[subBankmodule] =(widthInfo.back() & 0x00ff0000) >> 16;
482 fHoldOff[subBankmodule] =(widthInfo.back() & 0x0000ff00) >> 8;
483 fPipelineDelay[subBankmodule] =(widthInfo.back() & 0x000000ff);
486 fMinWidth[subBankmodule] = (trigInfo.back() & 0x00ff0000) >> 16;
487 fAcTrig[subBankmodule] = (trigInfo.back() & 0x0000ff00) >> 8;
488 fEvTrig[subBankmodule] = (trigInfo.back() & 0x000000ff);
490 subBankiterate = subBankiterate + 32;
503 Bool_t eventokay = kTRUE;
505 for (Int_t i=0; i<NPlanes; i++)
506 nchan += fStripsRaw[i].size();
507 eventokay &= (nchan == 384);
517 for (Int_t i = 0; i < NPlanes; i++){
518 for (Int_t j = 0; j < StripsPerPlane; j++){
520 fStripsRaw[i][j] = 0;
521 fStripsRaw_v2[i][j] = 0;
523 fStripsRawEv[i][j] = 0;
525 fStripsRawScal[i][j] = 0;
542 if (Compare(value)) {
545 for (Int_t i = 0; i < NPlanes; i++){
546 for (Int_t j = 0; j < StripsPerPlane; j++) {
547 this->fStripsRaw[i][j] = input->
fStripsRaw[i][j];
548 this->fStrips[i][j] = input->
fStrips[i][j];
554 this->fPlane1Mask.resize(input->
fPlane1Mask.size());
555 this->fPlane2Mask.resize(input->
fPlane2Mask.size());
556 this->fPlane3Mask.resize(input->
fPlane3Mask.size());
557 this->fPlane4Mask.resize(input->
fPlane4Mask.size());
558 this->fEvTrig.resize(input->
fEvTrig.size());
559 this->fAcTrig.resize(input->
fAcTrig.size());
560 this->fMinWidth.resize(input->
fMinWidth.size());
562 this->fPWTL.resize(input->
fPWTL.size());
563 this->fPWTL2.resize(input->
fPWTL2.size());
564 this->fHoldOff.resize(input->
fHoldOff.size());
567 for (UInt_t j = 0; j < input->
fPlane1Mask.size(); j++)
569 for (UInt_t j = 0; j < input->
fPlane2Mask.size(); j++)
571 for (UInt_t j = 0; j < input->
fPlane3Mask.size(); j++)
573 for (UInt_t j = 0; j < input->
fPlane4Mask.size(); j++)
579 for (UInt_t j = 0; j < input->
fPWTL.size(); j++)
580 this->fPWTL[j] = input->
fPWTL[j];
582 for (UInt_t j = 0; j < input->
fPWTL2.size(); j++)
583 this->fPWTL2[j] = input->
fPWTL2[j];
585 for (UInt_t j = 0; j < input->
fHoldOff.size(); j++)
586 this->fHoldOff[j] = input->
fHoldOff[j];
591 for (UInt_t j = 0; j < input->
fEvTrig.size(); j++)
592 this->fEvTrig[j] = input->
fEvTrig[j];
593 for (UInt_t j = 0; j < input->
fAcTrig.size(); j++)
594 this->fAcTrig[j] = input->
fAcTrig[j];
595 for (UInt_t j = 0; j < input->
fMinWidth.size(); j++)
596 this->fMinWidth[j] = input->
fMinWidth[j];
605 if (Compare(value)) {
607 for (Int_t i = 0; i < NPlanes; i++){
608 for (Int_t j = 0; j < StripsPerPlane; j++){
609 this->fStripsRaw[i][j] += input->
fStripsRaw[i][j];
622 if (Compare(value)) {
624 for (Int_t i = 0; i < NPlanes; i++){
625 for (Int_t j = 0; j < StripsPerPlane; j++) {
626 this->fStripsRaw[i][j] -= input->
fStripsRaw[i][j];
639 if (Compare(value)) {
641 for (Int_t i = 0; i < NPlanes; i++){
642 for (Int_t j = 0; j < StripsPerPlane; j++){
643 this->fStripsRaw[i][j] *= input->
fStripsRaw[i][j];
656 if (Compare(value1) && Compare(value2)) {
664 if (Compare(value1) && Compare(value2)) {
672 if (Compare(numer) && Compare(denom)) {
676 for (Int_t i = 0; i < NPlanes; i++){
677 for (Int_t j = 0; j < StripsPerPlane; j++){
686 this->fStripsRaw[i][j]=0;
695 for (Int_t i = 0; i < NPlanes; i++){
696 for (Int_t j = 0; j < StripsPerPlane; j++){
697 this->fStripsRaw[i][j] *=
static_cast<double>(factor);
698 this->fStrips[i][j] *=
static_cast<double>(factor);
699 this->fStripsRawEv[i][j] *=
static_cast<double>(factor);
700 this->fStripsRawScal[i][j] *=
static_cast<double>(factor);
701 this->fStripsRaw_v2[i][j] *=
static_cast<double>(factor);
710 if (value == 0)
return kFALSE;
713 Bool_t result = kTRUE;
714 if (
typeid(*value) !=
typeid(*
this)) {
718 if (input->
fStripsRaw.size() != fStripsRaw.size()) {
724 if (input->
fStripsRawEv.size() != fStripsRawEv.size()) {
739 if (Compare(value)) {
748 if (fGoodEventCount <= 0) {
751 Scale(1.0/fGoodEventCount);
765 if (folder != NULL) folder->cd();
768 TDirectory* eDetfolder = folder->GetDirectory(
"Compton_Electron");
769 if (eDetfolder == 0) eDetfolder = folder->mkdir(
"Compton_Electron");
772 TString basename = prefix + GetSubsystemName();
775 for (Int_t i=0; i<NPlanes; i++){
776 TString histname = Form(
"Compton_eDet_Accum_Raw_Plane%d",i+1);
778 histname = Form(
"Compton_eDet_Accum_v2_Plane%d",i+1);
780 histname = Form(
"Compton_eDet_Evt_Raw_Plane%d",i+1);
782 histname = Form(
"Compton_eDet_Evt_Plane%d",i+1);
784 histname = Form(
"Compton_eDet_Scal_Raw_Plane%d",i+1);
791 for (Int_t i = 0; i < NPlanes; i++) {
796 for (Int_t j = 0; j < StripsPerPlane; j++) {
797 Int_t nthStrip = j + 1;
799 if (fHistograms[ii] != NULL) {
800 for (Int_t n=0; n<fStripsRaw[i][j]; n++)
801 fHistograms[ii]->Fill(nthStrip);
804 if (fHistograms[ii+1] != NULL) {
805 for (Int_t n=0; n<fStrips[i][j]; n++)
806 fHistograms[ii+1]->Fill(nthStrip);
809 if (fHistograms[ii+2] != NULL) {
810 for (Int_t n = 0; n < fStripsRawEv[i][j]; n++)
811 fHistograms[ii+2]->Fill(nthStrip);
814 if (fHistograms[ii+3] != NULL) {
815 for (Int_t n=0; n<fStripsEv[i][j]; n++)
816 fHistograms[ii+3]->Fill(nthStrip);
819 if (fHistograms[ii+4] != NULL) {
820 for (Int_t n=0; n<fStripsRawScal[i][j]; n++){
821 fHistograms[ii+4]->Fill(nthStrip);
831 fTreeArrayIndex = values.size();
834 fIsConfigOnly = kTRUE;
836 for (Int_t i = 0; i < NPlanes; i++) {
837 TString basename = Form(
"v1495InfoPlane%d",i+1);
838 TString valnames =
"";
839 Double_t* valstart = &(values.back());
840 for (Int_t j = 0; j < StripsPerPlane; j++) {
841 valnames += TString(
":") + Form(
"p%ds%dMask",i+1,j+1) +
"/D";
842 values.push_back(0.0);
844 valnames.Remove(0,1);
845 tree->Branch(basename, valstart+1, valnames);
848 for (Int_t k = 0; k < NModules; k++) {
849 TString basename = Form(
"slave%d_acTrig",k+1);
850 Double_t* valstart = &(values.back());
851 values.push_back(0.0);
852 tree->Branch(basename, valstart+1);
854 for (Int_t k = 0; k < NModules; k++) {
855 TString basename = Form(
"slave%d_evTrig",k+1);
856 Double_t* valstart = &(values.back());
857 values.push_back(0.0);
858 tree->Branch(basename, valstart+1);
860 for (Int_t k = 0; k < NModules; k++) {
861 TString basename = Form(
"slave%d_minWidth",k+1);
862 Double_t* valstart = &(values.back());
863 values.push_back(0.0);
864 tree->Branch(basename, valstart+1);
866 for (Int_t k = 0; k < NModules; k++) {
867 TString basename = Form(
"slave%d_firmWareRevision",k+1);
868 Double_t* valstart = &(values.back());
869 values.push_back(0.0);
870 tree->Branch(basename, valstart+1);
872 for (Int_t k = 0; k < NModules; k++) {
873 TString basename = Form(
"slave%d_PWTL",k+1);
874 Double_t* valstart = &(values.back());
875 values.push_back(0.0);
876 tree->Branch(basename, valstart+1);
878 for (Int_t k = 0; k < NModules; k++) {
879 TString basename = Form(
"slave%d_PWTL2",k+1);
880 Double_t* valstart = &(values.back());
881 values.push_back(0.0);
882 tree->Branch(basename, valstart+1);
884 for (Int_t k = 0; k < NModules; k++) {
885 TString basename = Form(
"slave%d_HoldOff",k+1);
886 Double_t* valstart = &(values.back());
887 values.push_back(0.0);
888 tree->Branch(basename, valstart+1);
890 for (Int_t k = 0; k < NModules; k++) {
891 TString basename = Form(
"slave%d_PipelineDelay",k+1);
892 Double_t* valstart = &(values.back());
893 values.push_back(0.0);
894 tree->Branch(basename, valstart+1);
899 for (Int_t i = 0; i < NPlanes; i++) {
903 TString basename = prefix + Form(
"p%dRawEv",i+1);
904 TString valnames =
"";
905 Double_t* valstart = &(values.back());
906 for (Int_t j = 0; j < StripsPerPlane; j++) {
907 valnames += TString(
":") + prefix + Form(
"p%ds%dRawEv",i+1,j+1) +
"/D";
908 values.push_back(0.0);
910 valnames.Remove(0,1);
911 tree->Branch(basename, valstart+1, valnames);
914 basename = prefix + Form(
"p%dRawAc",i+1);
916 valstart = &(values.back());
917 for (Int_t j = 0; j < StripsPerPlane; j++) {
918 valnames += TString(
":") + prefix + Form(
"p%ds%dRawAc",i+1,j+1) +
"/D";
919 values.push_back(0.0);
921 valnames.Remove(0,1);
922 tree->Branch(basename, valstart+1, valnames);
925 basename = prefix + Form(
"p%dRawAc_v2",i+1);
927 valstart = &(values.back());
928 for (Int_t j = 0; j < StripsPerPlane; j++) {
929 valnames += TString(
":") + prefix + Form(
"p%ds%dRawAc_v2",i+1,j+1) +
"/D";
930 values.push_back(0.0);
932 valnames.Remove(0,1);
933 tree->Branch(basename, valstart+1, valnames);
936 basename = prefix + Form(
"p%dRawV1495Scaler",i+1);
938 valstart = &(values.back());
939 for (Int_t j = 0; j < StripsPerPlane; j++) {
940 valnames += TString(
":") + prefix + Form(
"p%ds%dRawV1495Scaler",i+1,j+1) +
"/D";
941 values.push_back(0.0);
943 valnames.Remove(0,1);
944 tree->Branch(basename, valstart+1, valnames);
955 size_t index = fTreeArrayIndex;
958 for (UInt_t j = 0; j < fPlane1Mask.size(); j++)
959 values[index++] = fPlane1Mask.at(j);
960 for (UInt_t j = 0; j < fPlane2Mask.size(); j++)
961 values[index++] = fPlane2Mask.at(j);
962 for (UInt_t j = 0; j < fPlane3Mask.size(); j++)
963 values[index++] = fPlane3Mask.at(j);
964 for (UInt_t j = 0; j < fPlane4Mask.size(); j++)
965 values[index++] = fPlane4Mask.at(j);
967 for (UInt_t j = 0; j < fAcTrig.size(); j++) {
968 values[index++] = fAcTrig.at(j);
970 for (UInt_t j = 0; j < fEvTrig.size(); j++) {
971 values[index++] = fEvTrig.at(j);
973 for (UInt_t j = 0; j < fMinWidth.size(); j++) {
974 values[index++] = fMinWidth.at(j);
976 for (UInt_t j = 0; j < fFirmwareRevision.size(); j++) {
977 values[index++] = fFirmwareRevision.at(j);
979 for (UInt_t j = 0; j < fPWTL.size(); j++) {
980 values[index++] = fPWTL.at(j);
982 for (UInt_t j = 0; j < fPWTL2.size(); j++) {
983 values[index++] = fPWTL2.at(j);
985 for (UInt_t j = 0; j < fHoldOff.size(); j++) {
986 values[index++] = fHoldOff.at(j);
988 for (UInt_t j = 0; j < fPipelineDelay.size(); j++) {
989 values[index++] = fPipelineDelay.at(j);
994 for (Int_t i = 0; i < NPlanes; i++) {
995 for (Int_t j = 0; j < StripsPerPlane; j++)
996 values[index++] = fStripsRawEv[i][j];
997 for (Int_t j = 0; j < StripsPerPlane; j++)
998 values[index++] = fStripsRaw[i][j];
999 for (Int_t j = 0; j < StripsPerPlane; j++)
1000 values[index++] = fStripsRaw_v2[i][j];
1001 for (Int_t j = 0; j < StripsPerPlane; j++)
1002 values[index++] = fStripsRawScal[i][j];
1013 TString basename = GetSubsystemName();
1017 fTree =
new TTree(
"ComptonElectron",
"Compton Electron Detector");
1018 fTree->Branch(
"nevents",&fTree_fNEvents,
"nevents/I");
1019 for (Int_t i=0; i< NPlanes; i++){
1020 vnameh = Form(
"Plane%d_Evt",i);
1021 vnamet = Form(
"Plane%d_Evt/I",i);
1022 fComptonElectronVector.push_back(0);
1023 fTree->Branch(vnameh,&(fComptonElectronVector[i]),vnamet);
1038 for (Int_t i=0; i< NPlanes; i++)
1039 fComptonElectronVector[i] = 0;
1041 fTree_fNEvents = GetNumberOfEvents();
1042 for (Int_t i=0; i< NPlanes; i++){
1043 for (Int_t j=0; j<StripsPerPlane; j++){
1044 if (fStripsEv[i][j] != 0)
1045 fComptonElectronVector[i] += 1;
1058 stringstream ss; ss <<
myrun;
1059 string str = ss.str();
1060 path +=
"_" + str +
".txt";
1062 static Int_t edet_count = 0;
1066 if(edet_count == 1) {
1069 QwOut <<
"Run Number = " << myrun <<
" Good Events = " << fGoodEventCount <<
QwLog::endl;
1071 myfile.open (path.c_str());
1074 myfile.open (path.c_str(),ios::app);
1078 for (Int_t i=0; i<NPlanes; i++)
1079 nchan += fStripsRaw[i].size();
1082 for (Int_t j=0; j<StripsPerPlane; j++) {
1083 myfile << j <<
" " << fGoodEventCount*fStripsRaw[0][j] <<
" " << fGoodEventCount*fStripsRaw[1][j] <<
" " <<
1084 fGoodEventCount*fStripsRaw[2][j] <<
" " << fGoodEventCount*fStripsRaw[3][j] << endl;
VQwSubsystem & operator+=(VQwSubsystem *value)
VQwSubsystem & operator=(VQwSubsystem *value)
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
#define QwOut
Predefined log drain for explicit output.
std::vector< std::vector< Double_t > > fStripsRawScal
List of V1495 scaler counts.
std::vector< UInt_t > fPlane1Mask
Class for the analysis of Compton electron detector data.
std::vector< UInt_t > fEvTrig
static UInt_t GetUInt(const TString &varvalue)
void Scale(Double_t factor)
Int_t ProcessEvBuffer(UInt_t roc_id, UInt_t bank_id, UInt_t *buffer, UInt_t num_words)
std::vector< std::vector< Double_t > > fStripsRawEv
void TrimComment(const char commentchar)
Int_t ProcessConfigurationBuffer(const UInt_t roc_id, const UInt_t bank_id, UInt_t *buffer, UInt_t num_words)
std::vector< UInt_t > fPWTL2
std::vector< std::vector< Double_t > > fStripsRaw
std::vector< UInt_t > fMinWidth
void Difference(VQwSubsystem *value1, VQwSubsystem *value2)
virtual void ConstructHistograms()
Construct the histograms for this subsystem.
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
Construct the branch and tree vector.
std::vector< UInt_t > fPipelineDelay
virtual VQwSubsystem & operator=(VQwSubsystem *value)
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
VQwSubsystem & operator-=(VQwSubsystem *value)
A logfile class, based on an identical class in the Hermes analyzer.
void FillTreeVector(std::vector< Double_t > &values) const
Fill the tree vector.
Bool_t Compare(VQwSubsystem *source)
void CalculateRunningAverage()
Calculate the average for all good events.
std::vector< UInt_t > fPlane2Mask
std::vector< std::vector< Double_t > > fStripsRaw_v2
void DeleteTree()
Delete the tree for this subsystem.
QwHistogramHelper gQwHists
Globally defined instance of the QwHistogramHelper class.
The pure virtual base class of all subsystems.
void FillTree()
Fill the tree for this subsystem.
void Ratio(VQwSubsystem *numer, VQwSubsystem *denom)
void PrintValue() const
Print values of all channels.
std::vector< UInt_t > fPWTL
void AccumulateRunningSum(VQwSubsystem *value)
Update the running sums for devices.
std::vector< UInt_t > fFirmwareRevision
static std::ostream & endl(std::ostream &)
End of the line.
const std::string getenv_safe_string(const char *name)
std::vector< UInt_t > fHoldOff
std::vector< std::vector< Double_t > > fStrips
VQwSubsystem & operator*=(VQwSubsystem *value)
virtual void ConstructTree()
Construct the tree for this subsystem.
void FillHistograms()
Fill the histograms for this subsystem.
std::vector< UInt_t > fPlane3Mask
Int_t LoadEventCuts(TString &filename)
Int_t LoadChannelMap(TString mapfile)
Mandatory map file definition.
std::vector< UInt_t > fAcTrig
TH1F * Construct1DHist(const TString &inputfile, const TString &name_title)
Int_t LoadInputParameters(TString pedestalfile)
Mandatory parameter file definition.
std::vector< UInt_t > fPlane4Mask
void Sum(VQwSubsystem *value1, VQwSubsystem *value2)
#define RegisterSubsystemFactory(A)
#define QwError
Predefined log drain for errors.