diff --git a/src/THcInterface.cxx b/src/THcInterface.cxx index 092c2c3e63b06259c730b75f8512fa2eef6fb486..ef72321d069f64e906f1e6102421ecfd0f8e9633 100644 --- a/src/THcInterface.cxx +++ b/src/THcInterface.cxx @@ -38,15 +38,15 @@ using namespace std; -THaVarList* gHaVars = NULL; // List of symbolic analyzer variables -THaCutList* gHaCuts = NULL; // List of global analyzer cuts/tests -TList* gHaApps = NULL; // List of Apparatuses -TList* gHaScalers = NULL; // List of scaler groups -TList* gHaPhysics = NULL; // List of physics modules -THaRunBase* gHaRun = NULL; // The currently active run -TClass* gHaDecoder = NULL; // Class(!) of decoder to use -THaDB* gHaDB = NULL; // Database system to use -THaTextvars* gHaTextvars = NULL; // Text variable definitions +//THaVarList* gHaVars = NULL; // List of symbolic analyzer variables +//THaCutList* gHaCuts = NULL; // List of global analyzer cuts/tests +//TList* gHaApps = NULL; // List of Apparatuses +//TList* gHaScalers = NULL; // List of scaler groups +//TList* gHaPhysics = NULL; // List of physics modules +//THaRunBase* gHaRun = NULL; // The currently active run +//TClass* gHaDecoder = NULL; // Class(!) of decoder to use +//THaDB* gHaDB = NULL; // Database system to use +//THaTextvars* gHaTextvars = NULL; // Text variable definitions THcParmList* gHcParms = NULL; // List of symbolic analyzer variables THcDetectorMap* gHcDetectorMap = NULL; // Global (Hall C style) detector map diff --git a/src/THcShower.cxx b/src/THcShower.cxx index 14da4dc859e165676ac3fb3de3a8aaaf34904a30..161d782f6a49789fe901ac4011bea92150658ae3 100644 --- a/src/THcShower.cxx +++ b/src/THcShower.cxx @@ -658,17 +658,17 @@ Int_t THcShower::CoarseProcess( TClonesArray& tracks) THcShowerCluster* cluster = (*ClusterList).ListedCluster(i); - cout << "Cluster #" << i - <<": E=" << (*cluster).clE() - << " Epr=" << (*cluster).clEpr() - << " X=" << (*cluster).clX() - << " Z=" << (*cluster).clZ() - << " size=" << (*cluster).clSize() - << endl; + //cout << "Cluster #" << i + //<<": E=" << (*cluster).clE() + //<< " Epr=" << (*cluster).clEpr() + //<< " X=" << (*cluster).clX() + //<< " Z=" << (*cluster).clZ() + //<< " size=" << (*cluster).clSize() + //<< endl; for (UInt_t j=0; j!=(*cluster).clSize(); j++) { THcShowerHit* hit = (*cluster).ClusteredHit(j); - cout << " hit #" << j << ": "; (*hit).show(); + //cout << " hit #" << j << ": "; (*hit).show(); } } diff --git a/src/THcShowerHit.h b/src/THcShowerHit.h index 269ddde61836ce95cef507539c478e465fadbdb6..d526cca6c54d5d7c1a3ff2d3ad3fed19095b7b1a 100644 --- a/src/THcShowerHit.h +++ b/src/THcShowerHit.h @@ -83,9 +83,9 @@ public: //Print out hit information // void show() { - cout << "row=" << fRow << " column=" << fCol - << " x=" << fX << " z=" << fZ - << " E=" << fE << " Epos=" << fEpos << " Eneg=" << fEneg << endl; + //cout << "row=" << fRow << " column=" << fCol + // << " x=" << fX << " z=" << fZ + // << " E=" << fE << " Epos=" << fEpos << " Eneg=" << fEneg << endl; } };