Skip to content
Snippets Groups Projects
Commit 2d82e0c7 authored by Vardan Tadevosyan's avatar Vardan Tadevosyan
Browse files

Add debug flags to the print-outs from the HMS calorimeter initialization.

    Add fdbg_raw_cal flag in THcShower.h.
    Initiate fdbg_raw_cal with engine's hdbg_raw_cal in THcShower::ReadDataBase.
    Supply calorimeter debug flags to otherwise free print-outs in the
    THcShower and THcShowerPlane methods.
parent 15c33467
No related branches found
No related tags found
No related merge requests found
...@@ -178,6 +178,7 @@ Int_t THcShower::ReadDatabase( const TDatime& date ) ...@@ -178,6 +178,7 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
{"cal_slop", &fSlop, kDouble}, {"cal_slop", &fSlop, kDouble},
{"cal_fv_test", &fvTest, kInt,0,1}, {"cal_fv_test", &fvTest, kInt,0,1},
{"cal_fv_delta", &fvDelta, kDouble}, {"cal_fv_delta", &fvDelta, kDouble},
{"dbg_raw_cal", &fdbg_raw_cal, kInt},
{"dbg_decoded_cal", &fdbg_decoded_cal, kInt}, {"dbg_decoded_cal", &fdbg_decoded_cal, kInt},
{"dbg_sparsified_cal", &fdbg_sparsified_cal, kInt}, {"dbg_sparsified_cal", &fdbg_sparsified_cal, kInt},
{"dbg_clusters_cal", &fdbg_clusters_cal, kInt}, {"dbg_clusters_cal", &fdbg_clusters_cal, kInt},
......
...@@ -180,8 +180,8 @@ protected: ...@@ -180,8 +180,8 @@ protected:
Double_t fvYmin; Double_t fvYmin;
Double_t fvYmax; Double_t fvYmax;
Int_t fdbg_raw_cal; // Shower debug flags
Int_t fdbg_decoded_cal; // Shower debug flags Int_t fdbg_decoded_cal;
Int_t fdbg_sparsified_cal; Int_t fdbg_sparsified_cal;
Int_t fdbg_clusters_cal; Int_t fdbg_clusters_cal;
Int_t fdbg_tracks_cal; Int_t fdbg_tracks_cal;
......
...@@ -65,11 +65,13 @@ THcShowerPlane::~THcShowerPlane() ...@@ -65,11 +65,13 @@ THcShowerPlane::~THcShowerPlane()
delete [] fEmean; delete [] fEmean;
} }
//_____________________________________________________________________________
THaAnalysisObject::EStatus THcShowerPlane::Init( const TDatime& date ) THaAnalysisObject::EStatus THcShowerPlane::Init( const TDatime& date )
{ {
// Extra initialization for shower layer: set up DataDest map // Extra initialization for shower layer: set up DataDest map
cout << "THcShowerPlane::Init called " << GetName() << endl; if ( ((THcShower*) GetParent())->fdbg_init_cal )
cout << "THcShowerPlane::Init called " << GetName() << endl;
if( IsZombie()) if( IsZombie())
return fStatus = kInitError; return fStatus = kInitError;
...@@ -104,17 +106,19 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date ) ...@@ -104,17 +106,19 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date )
strcat(parname,GetName()); strcat(parname,GetName());
strcat(parname,"_nr"); strcat(parname,"_nr");
cout << " Getting value of SHOWER!!!" << parname << endl;
// Retrieve parameters we need from parent class // Retrieve parameters we need from parent class
THcShower* fParent; THcShower* fParent;
fParent = (THcShower*) GetParent(); fParent = (THcShower*) GetParent();
if (fParent->fdbg_init_cal)
cout << " Getting value of SHOWER!!!" << parname << endl;
fNelem = fParent->GetNBlocks(fLayerNum-1); fNelem = fParent->GetNBlocks(fLayerNum-1);
// cout << "THcShowerPlane::ReadDatabase: fLayerNum=" << fLayerNum if (fParent->fdbg_init_cal)
// << " fNelem=" << fNelem << endl; cout << "THcShowerPlane::ReadDatabase: fLayerNum=" << fLayerNum
<< " fNelem=" << fNelem << endl;
// Origin of the plane: // Origin of the plane:
// //
...@@ -136,8 +140,9 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date ) ...@@ -136,8 +140,9 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date )
fOrigin.SetXYZ(xOrig, yOrig, zOrig); fOrigin.SetXYZ(xOrig, yOrig, zOrig);
cout << "Origin of Layer " << fLayerNum << ": " if (fParent->fdbg_init_cal)
<< fOrigin.X() << " " << fOrigin.Y() << " " << fOrigin.Z() << endl; cout << "Origin of Layer " << fLayerNum << ": "
<< fOrigin.X() << " " << fOrigin.Y() << " " << fOrigin.Z() << endl;
// Detector axes. Assume no rotation. // Detector axes. Assume no rotation.
// //
...@@ -168,15 +173,17 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date ) ...@@ -168,15 +173,17 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date )
fNegPedLimit[i] = fParent->GetPedLimit(i,fLayerNum-1,1); fNegPedLimit[i] = fParent->GetPedLimit(i,fLayerNum-1,1);
} }
cout << " fPosPedLimit:"; if (fParent->fdbg_init_cal) {
for(Int_t i=0;i<fNelem;i++) cout << " " << fPosPedLimit[i]; cout << " fPosPedLimit:";
cout << endl; for(Int_t i=0;i<fNelem;i++) cout << " " << fPosPedLimit[i];
cout << " fNegPedLimit:"; cout << endl;
for(Int_t i=0;i<fNelem;i++) cout << " " << fNegPedLimit[i]; cout << " fNegPedLimit:";
cout << endl; for(Int_t i=0;i<fNelem;i++) cout << " " << fNegPedLimit[i];
cout << endl;
}
fMinPeds = fParent->GetMinPeds(); fMinPeds = fParent->GetMinPeds();
cout << " fMinPeds = " << fMinPeds << endl; if (fParent->fdbg_init_cal) cout << " fMinPeds = " << fMinPeds << endl;
InitializePedestals(); InitializePedestals();
...@@ -201,7 +208,8 @@ Int_t THcShowerPlane::DefineVariables( EMode mode ) ...@@ -201,7 +208,8 @@ Int_t THcShowerPlane::DefineVariables( EMode mode )
{ {
// Initialize global variables and lookup table for decoder // Initialize global variables and lookup table for decoder
cout << "THcShowerPlane::DefineVariables called " << GetName() << endl; if ( ((THcShower*) GetParent())->fdbg_init_cal )
cout << "THcShowerPlane::DefineVariables called " << GetName() << endl;
if( mode == kDefine && fIsSetup ) return kOK; if( mode == kDefine && fIsSetup ) return kOK;
fIsSetup = ( mode == kDefine ); fIsSetup = ( mode == kDefine );
...@@ -229,7 +237,9 @@ Int_t THcShowerPlane::DefineVariables( EMode mode ) ...@@ -229,7 +237,9 @@ Int_t THcShowerPlane::DefineVariables( EMode mode )
//_____________________________________________________________________________ //_____________________________________________________________________________
void THcShowerPlane::Clear( Option_t* ) void THcShowerPlane::Clear( Option_t* )
{ {
//cout << " Calling THcShowerPlane::Clear " << GetName() << endl; if ( ((THcShower*) GetParent())->fdbg_decoded_cal )
cout << " Calling THcShowerPlane::Clear " << GetName() << endl;
// Clears the hit lists // Clears the hit lists
fPosADCHits->Clear(); fPosADCHits->Clear();
fNegADCHits->Clear(); fNegADCHits->Clear();
...@@ -239,7 +249,8 @@ void THcShowerPlane::Clear( Option_t* ) ...@@ -239,7 +249,8 @@ void THcShowerPlane::Clear( Option_t* )
Int_t THcShowerPlane::Decode( const THaEvData& evdata ) Int_t THcShowerPlane::Decode( const THaEvData& evdata )
{ {
// Doesn't actually get called. Use Fill method instead // Doesn't actually get called. Use Fill method instead
cout << " Calling THcShowerPlane::Decode " << GetName() << endl; if ( ((THcShower*) GetParent())->fdbg_decoded_cal )
cout << " Calling THcShowerPlane::Decode " << GetName() << endl;
return 0; return 0;
} }
...@@ -251,27 +262,8 @@ Int_t THcShowerPlane::CoarseProcess( TClonesArray& tracks ) ...@@ -251,27 +262,8 @@ Int_t THcShowerPlane::CoarseProcess( TClonesArray& tracks )
// Nothing is done here. See ProcessHits method instead. // Nothing is done here. See ProcessHits method instead.
// //
// HitCount(); if ( ((THcShower*) GetParent())->fdbg_tracks_cal )
cout << "THcShowerPlane::CoarseProcess called --------------------" << endl;
/*
if (THcShower::fdbg_tracks_cal)
cout << "THcShowerPlane::CoarseProcess called ---------------------" << endl;
Int_t Ntracks = tracks.GetLast()+1; // Number of reconstructed tracks
if (THcShower::fdbg_tracks_cal)
cout << " Number of reconstructed tracks = " << Ntracks << endl;
for (Int_t i=0; i<Ntracks; i++) {
THaTrack* theTrack = static_cast<THaTrack*>( tracks[i] );
Double_t pathl;
Double_t xtrk;
Double_t ytrk;
CalcTrackIntercept(theTrack, pathl, xtrk, ytrk);
}
*/
return 0; return 0;
} }
...@@ -404,15 +396,17 @@ Int_t THcShowerPlane::AccumulatePedestals(TClonesArray* rawhits, Int_t nexthit) ...@@ -404,15 +396,17 @@ Int_t THcShowerPlane::AccumulatePedestals(TClonesArray* rawhits, Int_t nexthit)
Int_t nrawhits = rawhits->GetLast()+1; Int_t nrawhits = rawhits->GetLast()+1;
// cout << "THcScintillatorPlane::AcculatePedestals " << fLayerNum << " " if ( ((THcShower*) GetParent())->fdbg_raw_cal )
// << nexthit << "/" << nrawhits << endl; cout << "THcShowerPlane::AcculatePedestals " << fLayerNum << " "
<< nexthit << "/" << nrawhits << endl;
Int_t ihit = nexthit; Int_t ihit = nexthit;
while(ihit < nrawhits) { while(ihit < nrawhits) {
THcRawShowerHit* hit = (THcRawShowerHit *) rawhits->At(ihit); THcRawShowerHit* hit = (THcRawShowerHit *) rawhits->At(ihit);
//cout << "fPlane = " << hit->fPlane << " Limit = " << fLayerNum << endl; if ( ((THcShower*) GetParent())->fdbg_raw_cal )
cout << "fPlane = " << hit->fPlane << " Limit = " << fLayerNum << endl;
// OK for hit list sorted by layer. // OK for hit list sorted by layer.
if(hit->fPlane > fLayerNum) { if(hit->fPlane > fLayerNum) {
...@@ -466,10 +460,12 @@ void THcShowerPlane::CalculatePedestals( ) ...@@ -466,10 +460,12 @@ void THcShowerPlane::CalculatePedestals( )
- fNegPed[i]*fNegPed[i]); - fNegPed[i]*fNegPed[i]);
fNegThresh[i] = fNegPed[i] + TMath::Min(50., TMath::Max(10., 3.*fNegSig[i])); fNegThresh[i] = fNegPed[i] + TMath::Min(50., TMath::Max(10., 3.*fNegSig[i]));
// cout << "Ped&Thr: " << fPosPed[i] << " " << fPosThresh[i] << " " << if ( ((THcShower*) GetParent())->fdbg_raw_cal )
// fNegPed[i] << " " << fNegThresh[i] << " " << i+1 << endl; cout << "Ped&Thr: " << fPosPed[i] << " " << fPosThresh[i] << " "
<< fNegPed[i] << " " << fNegThresh[i] << " " << i+1 << endl;
} }
// cout << " " << endl;
// if ( ((THcShower*) GetParent())->fdbg_raw_cal ) cout << " " << endl;
} }
......
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