Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ping Class Reference

#include <G4ping.hh>

Public Member Functions

 G4ping (const G4String &aName)
 
void push_back (const G4String &aS)
 
void push_back (G4double aD)
 
void push_back (const G4LorentzVector &aV)
 
void dump ()
 

Detailed Description

Definition at line 34 of file G4ping.hh.

Constructor & Destructor Documentation

◆ G4ping()

G4ping::G4ping ( const G4String & aName)
inline

Definition at line 38 of file G4ping.hh.

38: theName(aName) {}

Member Function Documentation

◆ dump()

void G4ping::dump ( )
inline

Definition at line 44 of file G4ping.hh.

45 {
46 if(std::getenv(theName))
47 {
48 std::size_t i(0);
49 for(i=0; i<theS.size(); ++i)
50 {
51 G4cout << theS[i]<<", ";
52 }
53 for(i=0; i<theD.size(); ++i)
54 {
55 G4cout << theD[i]<<", ";
56 }
57 for(i=0; i<theV.size(); ++i)
58 {
59 G4cout << theV[i]<<", ";
60 }
61 G4cout << G4endl;
62 }
63 theS.clear();
64 theD.clear();
65 theV.clear();
66 }
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ push_back() [1/3]

void G4ping::push_back ( const G4LorentzVector & aV)
inline

Definition at line 42 of file G4ping.hh.

42{theV.push_back(aV);}

◆ push_back() [2/3]

void G4ping::push_back ( const G4String & aS)
inline

Definition at line 40 of file G4ping.hh.

40{theS.push_back(aS);}

◆ push_back() [3/3]

void G4ping::push_back ( G4double aD)
inline

Definition at line 41 of file G4ping.hh.

41{theD.push_back(aD);}

The documentation for this class was generated from the following file: