Skip to content

Commit

Permalink
[cleaning] removed some print on screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
yramachers committed Aug 11, 2023
1 parent 4da5f3f commit df32ec7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/QTEventAction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void QTEventAction::EndOfEventAction(const G4Event* event)

// fill Hits output from SD
G4int GnofHits = GasHC->entries();
G4cout << "PRINT>>> number of hits: " << GnofHits << G4endl;
// G4cout << "PRINT>>> number of hits: " << GnofHits << G4endl;
// Gas detector
for ( G4int i=0; i<GnofHits; i++ )
{
Expand Down Expand Up @@ -118,7 +118,7 @@ void QTEventAction::EndOfEventAction(const G4Event* event)
G4int n_trajectories =
(trajectoryContainer == nullptr) ? 0 : trajectoryContainer->entries();

G4cout << "PRINT>>> number of trajectories: " << n_trajectories << G4endl;
// G4cout << "PRINT>>> number of trajectories: " << n_trajectories << G4endl;

if(n_trajectories > 0) {
for(auto* entry : *(trajectoryContainer->GetVector())) { // vector<G4VTrajectory*>*
Expand Down
2 changes: 1 addition & 1 deletion src/QTMagneticFieldSetup.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ QTMagneticFieldSetup::~QTMagneticFieldSetup()
void QTMagneticFieldSetup::SetUpBorisDriver()
{
// set up Boris driver from Geant4.11, follows example field01
G4cout << " QTFieldSetup::CreateAndSetupBorisDriver() called. " << G4endl;
// G4cout << " QTFieldSetup::CreateAndSetupBorisDriver() called. " << G4endl;
// G4cout << " 1. Creating Scheme (Stepper)." << G4endl;
fBStepper = new QTBorisScheme(fEquation);
// G4cout << " 2. Creating Driver." << G4endl;
Expand Down
2 changes: 1 addition & 1 deletion src/QTOutputManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void QTOutputManager::Book()
analysisManager = G4AnalysisManager::Instance();

if ( ! fFactoryOn ) {
analysisManager->SetVerboseLevel(1);
analysisManager->SetVerboseLevel(0);
analysisManager->SetNtupleMerging(true);

// Create directory
Expand Down

0 comments on commit df32ec7

Please sign in to comment.