Skip to content
Snippets Groups Projects
Commit 508d91b7 authored by Vardan Tadevosyan's avatar Vardan Tadevosyan Committed by Stephen A. Wood
Browse files

Separate constants for coordinate correction of the positive and

negative side PMT signals from the HMS and SOS calorimeters.

    Changes in the Ycor method of the THcShower class, and in
    examples/PARAM/hcana.param input file.
parent 4f234aa8
No related branches found
No related tags found
No related merge requests found
...@@ -16,8 +16,8 @@ hcal_fv_delta = 5. ...@@ -16,8 +16,8 @@ hcal_fv_delta = 5.
# Constants for the coordiante correction of the calorimeter energy depositions # Constants for the coordiante correction of the calorimeter energy depositions
hcal_a_cor = 200. hcal_a_cor = 200.
hcal_b_cor = 8000. hcal_b_cor = 8000.
hcal_c_cor = 64.36 hcal_c_cor = 64.36, 64.36 # for positive and negative sides
hcal_d_cor = 1.66 hcal_d_cor = 1.66, 1.66
hcal_layer_names = "1pr 2ta 3ta 4ta" hcal_layer_names = "1pr 2ta 3ta 4ta"
......
...@@ -214,8 +214,8 @@ Int_t THcShower::ReadDatabase( const TDatime& date ) ...@@ -214,8 +214,8 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
DBRequest list[]={ DBRequest list[]={
{"cal_a_cor", &fAcor, kDouble}, {"cal_a_cor", &fAcor, kDouble},
{"cal_b_cor", &fBcor, kDouble}, {"cal_b_cor", &fBcor, kDouble},
{"cal_c_cor", &fCcor, kDouble}, {"cal_c_cor", fCcor, kDouble, 2},
{"cal_d_cor", &fDcor, kDouble}, {"cal_d_cor", fDcor, kDouble, 2},
{0} {0}
}; };
gHcParms->LoadParmValues((DBRequest*)&list, prefix); gHcParms->LoadParmValues((DBRequest*)&list, prefix);
...@@ -226,8 +226,8 @@ Int_t THcShower::ReadDatabase( const TDatime& date ) ...@@ -226,8 +226,8 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
cout << " HMS Calorimeter coordinate correction constants:" << endl; cout << " HMS Calorimeter coordinate correction constants:" << endl;
cout << " fAcor = " << fAcor << endl; cout << " fAcor = " << fAcor << endl;
cout << " fBcor = " << fBcor << endl; cout << " fBcor = " << fBcor << endl;
cout << " fCcor = " << fCcor << endl; cout << " fCcor = " << fCcor[0] << ", " << fCcor[1] << endl;
cout << " fDcor = " << fDcor << endl; cout << " fDcor = " << fDcor[0] << ", " << fDcor[1] << endl;
} }
BlockThick = new Double_t [fNLayers]; BlockThick = new Double_t [fNLayers];
...@@ -950,8 +950,8 @@ Float_t THcShower::GetShEnergy(THaTrack* Track) { ...@@ -950,8 +950,8 @@ Float_t THcShower::GetShEnergy(THaTrack* Track) {
for (UInt_t ip=0; ip<fNLayers; ip++) { for (UInt_t ip=0; ip<fNLayers; ip++) {
// Coordinate correction factors for positive and negative sides, // Coordinate correction factors for positive and negative sides,
// different for single PMT counters in the 1-st two layes and for // different for double PMT counters in the 1-st two layes and for
// 2 PMT counters in the rear two layers. // single PMT counters in the rear two layers.
Float_t corpos = 1.; Float_t corpos = 1.;
Float_t corneg = 1.; Float_t corneg = 1.;
if (ip < fNegCols) { if (ip < fNegCols) {
......
...@@ -215,7 +215,8 @@ public: ...@@ -215,7 +215,8 @@ public:
return 0.; return 0.;
} }
Int_t sign = 1 - 2*side; Int_t sign = 1 - 2*side;
return (fCcor + sign*y)/(fCcor + sign*y/fDcor); // return (fCcor + sign*y)/(fCcor + sign*y/fDcor);
return (fCcor[side] + sign*y)/(fCcor[side] + sign*y/fDcor[side]);
} }
// Get total energy deposited in the cluster matched to the given // Get total energy deposited in the cluster matched to the given
...@@ -282,8 +283,8 @@ protected: ...@@ -282,8 +283,8 @@ protected:
Double_t fAcor; // Coordinate correction constants Double_t fAcor; // Coordinate correction constants
Double_t fBcor; Double_t fBcor;
Double_t fCcor; Double_t fCcor[2]; // for positive ad negative side PMTs
Double_t fDcor; Double_t fDcor[2];
THcShowerPlane** fPlanes; // [fNLayers] Shower Plane objects THcShowerPlane** fPlanes; // [fNLayers] Shower Plane objects
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment