Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-09 08:28:29

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 /// \file F03SteppingVerbose.cc
0027 /// \brief Implementation of the F03SteppingVerbose class
0028 
0029 #include "F03SteppingVerbose.hh"
0030 
0031 #include "G4SteppingManager.hh"
0032 #include "G4UnitsTable.hh"
0033 
0034 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0035 
0036 void F03SteppingVerbose::StepInfo()
0037 {
0038   CopyState();
0039 
0040   G4int prec = G4cout.precision(8);
0041 
0042   if (verboseLevel >= 1) {
0043     if (verboseLevel >= 4) VerboseTrack();
0044     if (verboseLevel >= 3) {
0045       G4cout << G4endl;
0046       G4cout << std::setw(5) << "#Step#"
0047              << " " << std::setw(10) << "X"
0048              << "    " << std::setw(10) << "Y"
0049              << "    " << std::setw(10) << "Z"
0050              << "    " << std::setw(10) << "KineE"
0051              << " " << std::setw(10) << "dEStep"
0052              << " " << std::setw(10) << "StepLeng" << std::setw(10) << "TrakLeng" << std::setw(10)
0053              << "NextVolu" << std::setw(10) << "Process" << std::setw(10) << "Dir_x"
0054              << "    " << std::setw(10) << "Dir_y"
0055              << "    " << std::setw(10) << "Dir_z"
0056              << "    " << G4endl;
0057     }
0058 
0059     G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " " << std::setw(10)
0060            << G4BestUnit(fTrack->GetPosition().x(), "Length") << std::setw(10)
0061            << G4BestUnit(fTrack->GetPosition().y(), "Length") << std::setw(10)
0062            << G4BestUnit(fTrack->GetPosition().z(), "Length") << std::setw(10)
0063            << G4BestUnit(fTrack->GetKineticEnergy(), "Energy") << std::setw(10)
0064            << G4BestUnit(fStep->GetTotalEnergyDeposit(), "Energy") << std::setw(10)
0065            << G4BestUnit(fStep->GetStepLength(), "Length") << std::setw(10)
0066            << G4BestUnit(fTrack->GetTrackLength(), "Length");
0067 
0068     if (fTrack->GetNextVolume() != nullptr) {
0069       G4cout << std::setw(10) << fTrack->GetVolume()->GetName();
0070     }
0071     else {
0072       G4cout << std::setw(10) << "OutOfWorld";
0073     }
0074 
0075     if (fStep->GetPostStepPoint()->GetProcessDefinedStep() != nullptr) {
0076       G4cout << "  " << std::setw(10)
0077              << fStep->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName();
0078     }
0079     else {
0080       G4cout << "   UserLimit";
0081     }
0082 
0083     G4cout << std::setw(12) << G4BestUnit(fTrack->GetMomentumDirection().x(), "Length")
0084            << std::setw(12) << G4BestUnit(fTrack->GetMomentumDirection().y(), "Length")
0085            << std::setw(12) << G4BestUnit(fTrack->GetMomentumDirection().z(), "Length");
0086 
0087     G4cout << G4endl;
0088 
0089     if (verboseLevel == 2) {
0090       G4int tN2ndariesTot = fN2ndariesAtRestDoIt + fN2ndariesAlongStepDoIt + fN2ndariesPostStepDoIt;
0091       if (tN2ndariesTot > 0) {
0092         G4cout << "    :----- List of 2ndaries - "
0093                << "#SpawnInStep=" << std::setw(3) << tN2ndariesTot << "(Rest=" << std::setw(2)
0094                << fN2ndariesAtRestDoIt << ",Along=" << std::setw(2) << fN2ndariesAlongStepDoIt
0095                << ",Post=" << std::setw(2) << fN2ndariesPostStepDoIt << "), "
0096                << "#SpawnTotal=" << std::setw(3) << (*fSecondary).size() << " ---------------"
0097                << G4endl;
0098 
0099         for (size_t lp1 = (*fSecondary).size() - tN2ndariesTot; lp1 < (*fSecondary).size(); lp1++) {
0100           G4cout << "    : " << std::setw(6)
0101                  << G4BestUnit((*fSecondary)[lp1]->GetPosition().x(), "Length") << std::setw(6)
0102                  << G4BestUnit((*fSecondary)[lp1]->GetPosition().y(), "Length") << std::setw(6)
0103                  << G4BestUnit((*fSecondary)[lp1]->GetPosition().z(), "Length") << std::setw(6)
0104                  << G4BestUnit((*fSecondary)[lp1]->GetKineticEnergy(), "Energy") << std::setw(10)
0105                  << (*fSecondary)[lp1]->GetDefinition()->GetParticleName();
0106           G4cout << G4endl;
0107         }
0108 
0109         G4cout << "    :-----------------------------"
0110                << "----------------------------------"
0111                << "-- EndOf2ndaries Info ---------------" << G4endl;
0112       }
0113     }
0114   }
0115   G4cout.precision(prec);
0116 }
0117 
0118 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0119 
0120 void F03SteppingVerbose::TrackingStarted()
0121 {
0122   CopyState();
0123   G4int prec = G4cout.precision(3);
0124   if (verboseLevel > 0) {
0125     G4cout << std::setw(5) << "Step#"
0126            << " " << std::setw(6) << "X"
0127            << "    " << std::setw(6) << "Y"
0128            << "    " << std::setw(6) << "Z"
0129            << "    " << std::setw(9) << "KineE"
0130            << " " << std::setw(9) << "dEStep"
0131            << " " << std::setw(10) << "StepLeng" << std::setw(10) << "TrakLeng" << std::setw(10)
0132            << "Volume"
0133            << "  " << std::setw(10) << "Process" << G4endl;
0134 
0135     G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " " << std::setw(6)
0136            << G4BestUnit(fTrack->GetPosition().x(), "Length") << std::setw(6)
0137            << G4BestUnit(fTrack->GetPosition().y(), "Length") << std::setw(6)
0138            << G4BestUnit(fTrack->GetPosition().z(), "Length") << std::setw(6)
0139            << G4BestUnit(fTrack->GetKineticEnergy(), "Energy") << std::setw(6)
0140            << G4BestUnit(fStep->GetTotalEnergyDeposit(), "Energy") << std::setw(6)
0141            << G4BestUnit(fStep->GetStepLength(), "Length") << std::setw(6)
0142            << G4BestUnit(fTrack->GetTrackLength(), "Length");
0143 
0144     if (fTrack->GetNextVolume()) {
0145       G4cout << std::setw(10) << fTrack->GetVolume()->GetName();
0146     }
0147     else {
0148       G4cout << std::setw(10) << "OutOfWorld";
0149     }
0150     G4cout << "    initStep" << G4endl;
0151   }
0152   G4cout.precision(prec);
0153 }
0154 
0155 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......