| 11 |
|
|
| 12 |
TofDedxVsBetaHistoAction::TofDedxVsBetaHistoAction(const char *actionName, unsigned int layers, bool standAlone, |
TofDedxVsBetaHistoAction::TofDedxVsBetaHistoAction(const char *actionName, unsigned int layers, bool standAlone, |
| 13 |
TString outFileBase, TString mode, bool outRoot, bool outText, TString title) : |
TString outFileBase, TString mode, bool outRoot, bool outText, TString title) : |
| 14 |
Histo2DAction<Int_t> (actionName, title, outFileBase, mode, outRoot, outText), _layers(layers), _nLayers(0), |
Histo2DAction<Int_t>(actionName, title, outFileBase, mode, outRoot, outText), _layers(layers), _nLayers(0), _badEvents( |
| 15 |
_badEvents(0), _standAlone(standAlone) { |
0), _standAlone(standAlone) { |
| 16 |
|
|
| 17 |
|
bool buildTitle = false; |
| 18 |
if (title == "") { |
if (title == "") { |
| 19 |
|
buildTitle = true; |
| 20 |
title = "TOF dE/dx ("; |
title = "TOF dE/dx ("; |
| 21 |
if ((_layers & S11) == S11) { |
} |
| 22 |
|
if ((_layers & S11) == S11) { |
| 23 |
|
if (buildTitle) |
| 24 |
title += "S11"; |
title += "S11"; |
| 25 |
_nLayers++; |
_nLayers++; |
| 26 |
} |
} |
| 27 |
if ((_layers & S12) == S12) { |
if ((_layers & S12) == S12) { |
| 28 |
|
if (buildTitle) { |
| 29 |
if (_nLayers > 0) |
if (_nLayers > 0) |
| 30 |
title += ","; |
title += ","; |
| 31 |
title += "S12"; |
title += "S12"; |
|
_nLayers++; |
|
| 32 |
} |
} |
| 33 |
if ((_layers & S21) == S21) { |
_nLayers++; |
| 34 |
|
} |
| 35 |
|
if ((_layers & S21) == S21) { |
| 36 |
|
if (buildTitle) { |
| 37 |
if (_nLayers > 0) |
if (_nLayers > 0) |
| 38 |
title += ","; |
title += ","; |
| 39 |
title += "S21"; |
title += "S21"; |
|
_nLayers++; |
|
| 40 |
} |
} |
| 41 |
if ((_layers & S22) == S22) { |
_nLayers++; |
| 42 |
|
} |
| 43 |
|
if ((_layers & S22) == S22) { |
| 44 |
|
if (buildTitle) { |
| 45 |
if (_nLayers > 0) |
if (_nLayers > 0) |
| 46 |
title += ","; |
title += ","; |
| 47 |
title += "S22"; |
title += "S22"; |
|
_nLayers++; |
|
| 48 |
} |
} |
| 49 |
if ((_layers & S31) == S31) { |
_nLayers++; |
| 50 |
|
} |
| 51 |
|
if ((_layers & S31) == S31) { |
| 52 |
|
if (buildTitle) { |
| 53 |
if (_nLayers > 0) |
if (_nLayers > 0) |
| 54 |
title += ","; |
title += ","; |
| 55 |
title += "S31"; |
title += "S31"; |
|
_nLayers++; |
|
| 56 |
} |
} |
| 57 |
if ((_layers & S32) == S32) { |
_nLayers++; |
| 58 |
|
} |
| 59 |
|
if ((_layers & S32) == S32) { |
| 60 |
|
if (buildTitle) { |
| 61 |
if (_nLayers > 0) |
if (_nLayers > 0) |
| 62 |
title += ","; |
title += ","; |
| 63 |
title += "S32"; |
title += "S32"; |
|
_nLayers++; |
|
| 64 |
} |
} |
| 65 |
|
_nLayers++; |
| 66 |
|
} |
| 67 |
|
if (buildTitle) |
| 68 |
title += ") Vs Beta"; |
title += ") Vs Beta"; |
| 69 |
|
|
| 70 |
SetTitle(title); |
SetTitle(title); |
|
} |
|
| 71 |
|
|
| 72 |
} |
} |
| 73 |
|
|
| 90 |
badLayers = 0; |
badLayers = 0; |
| 91 |
if ((_layers & S11) == S11) { |
if ((_layers & S11) == S11) { |
| 92 |
dEdxLayer = event->GetToFLevel2()->GetdEdx(trkSeqNo, 0, 100); |
dEdxLayer = event->GetToFLevel2()->GetdEdx(trkSeqNo, 0, 100); |
| 93 |
|
// Patch to exclude S115b |
| 94 |
|
ToFTrkVar *tofTrk = event->GetToFLevel2()->GetToFTrkVar(trkSeqNo); |
| 95 |
|
bool has8 = false, has9 = false; |
| 96 |
|
float dedx9 = 0.; |
| 97 |
|
for (Int_t ib = 0; ib < tofTrk->npmtadc; ib++) { |
| 98 |
|
if (tofTrk->pmtadc[ib] == 8) { |
| 99 |
|
has8 = true; |
| 100 |
|
} |
| 101 |
|
if (tofTrk->pmtadc[ib] == 9) { |
| 102 |
|
has9 = true; |
| 103 |
|
dedx9 = tofTrk->dedx[ib]; |
| 104 |
|
} |
| 105 |
|
} |
| 106 |
|
|
| 107 |
|
if (has9) { |
| 108 |
|
dEdxLayer -= (dedx9 / ((int) has8 + 1)); |
| 109 |
|
dEdxLayer *= 2.; |
| 110 |
|
} |
| 111 |
|
//End of patch |
| 112 |
if (dEdxLayer > 0. && dEdxLayer < 4090) |
if (dEdxLayer > 0. && dEdxLayer < 4090) |
| 113 |
dEdx += dEdxLayer; |
dEdx += dEdxLayer; |
| 114 |
else |
else |
| 150 |
badLayers++; |
badLayers++; |
| 151 |
} |
} |
| 152 |
if (badLayers == 0) { |
if (badLayers == 0) { |
| 153 |
dEdx /= _nLayers - badLayers; |
dEdx /= _nLayers; |
| 154 |
Fill(event->GetToFLevel2()->GetToFTrkVar(trkSeqNo)->beta[12], dEdx); |
Fill(event->GetToFLevel2()->GetToFTrkVar(trkSeqNo)->beta[12], dEdx); |
| 155 |
} |
} |
| 156 |
else |
else |