From e56b7a27239d6f048d1f5e61f7569cd8d07e218c Mon Sep 17 00:00:00 2001
From: Adrien Matta <matta@lpccaen.in2p3.fr>
Date: Mon, 4 May 2020 15:32:18 +0200
Subject: [PATCH] * removing debug message from actar

---
 NPSimulation/Detectors/Actar/Actar.cc | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/NPSimulation/Detectors/Actar/Actar.cc b/NPSimulation/Detectors/Actar/Actar.cc
index ab441692f..b45b90f88 100644
--- a/NPSimulation/Detectors/Actar/Actar.cc
+++ b/NPSimulation/Detectors/Actar/Actar.cc
@@ -573,7 +573,6 @@ void Actar::ReadConfiguration(NPL::InputParser parser){
 // Construct detector and inialise sensitive part.
 // Called After DetecorConstruction::AddDetector Method
 void Actar::ConstructDetector(G4LogicalVolume* world){
-  std::cout << ">>>>>>>>>> DEBUG : " << 0 << std::endl;
     for (unsigned short i = 0 ; i < m_R.size() ; i++) {
 
         G4double wX = m_R[i] * sin(m_Theta[i] ) * cos(m_Phi[i] ) ;
@@ -599,9 +598,7 @@ void Actar::ConstructDetector(G4LogicalVolume* world){
                           BuildDetector(),
                           "Actar",world,false,i+1);
     }
-    std::cout << ">>>>>>>>>> DEBUG : " << 1 << std::endl;
     if(!m_ReactionRegion){
-      std::cout << ">>>>>>>>>> DEBUG : " << 6 << std::endl;
         G4ProductionCuts* ecut = new G4ProductionCuts();
         ecut->SetProductionCut(1000,"e-");
 
@@ -614,21 +611,17 @@ void Actar::ConstructDetector(G4LogicalVolume* world){
         Region_cut->SetProductionCuts(ecut);
         Region_cut->AddRootLogicalVolume(m_SquareDetector);
     }
-    std::cout << ">>>>>>>>>> DEBUG : " << 2 << std::endl;
     G4FastSimulationManager* mng = m_ReactionRegion->GetFastSimulationManager();
-    std::cout << ">>>>>>>>>> DEBUG : " << 3 << std::endl;
     unsigned int size = m_ReactionModel.size();
     for(unsigned int i = 0 ; i < size ; i++){
         mng->RemoveFastSimulationModel(m_ReactionModel[i]);
     }
-    std::cout << ">>>>>>>>>> DEBUG : " << 4 << std::endl;
     m_ReactionModel.clear();
     G4VFastSimulationModel* fsm;
     fsm = new NPS::BeamReaction("BeamReaction",m_ReactionRegion);
     m_ReactionModel.push_back(fsm);
     fsm = new NPS::Decay("Decay",m_ReactionRegion);
     m_ReactionModel.push_back(fsm);
-    std::cout << ">>>>>>>>>> DEBUG : " << 5 << std::endl;
 }
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 // Add Detector branch to the EventTree.
-- 
GitLab