Geant4  10.02.p02
Par02PrimaryParticleInformation.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: $
27 //
30 
32 
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 
36  G4int aPartID, G4int aPDG, G4ThreeVector aMomentum ) :
37  fPartID( aPartID ), fPDG( aPDG ), fMomentumMC( aMomentum ),
38  fMomentumTracker( 0 ), fResolutionTracker( 0 ), fEfficiencyTracker( 0 ),
39  fPositionEMCal( 0 ), fEnergyEMCal( 0 ), fResolutionEMCal( 0 ), fEfficiencyEMCal( 0 ),
40  fPositionHCal( 0 ), fEnergyHCal( 0 ), fResolutionHCal( 0 ), fEfficiencyHCal( 0 ) {}
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43 
45 
46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
47 
49  G4cout << "Par02PrimaryParticleInformation: PDG code " << fPDG << G4endl
50  << "Particle unique ID: " << fPartID << G4endl
51  << "MC momentum: " << fMomentumMC << G4endl
52  << "Tracker momentum: " << fMomentumTracker << G4endl
53  << "Tracker resolution: " << fResolutionTracker << G4endl
54  << "Tracker efficiency: " << fEfficiencyTracker << G4endl
55  << "EMCal energy: " << fEnergyEMCal << " at " << fPositionEMCal << G4endl
56  << "EMCal resolution: " << fResolutionEMCal << G4endl
57  << "EMCal efficiency: " << fEfficiencyEMCal << G4endl
58  << "HCal energy: " << fEnergyHCal << " at "<< fPositionHCal << G4endl
59  << "HCal resolution: " << fResolutionHCal << G4endl
60  << "HCal efficiency: " << fEfficiencyHCal << G4endl;
61 }
62 
63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64 
Par02PrimaryParticleInformation(G4int aID, G4int aPDG, G4ThreeVector aMomentum)
A constructor.
CLHEP::Hep3Vector G4ThreeVector
G4ThreeVector fPositionEMCal
A position of the energy deposited in the electromagnetic calorimeter.
Definition of the Par02PrimaryParticleInformation class.
int G4int
Definition: G4Types.hh:78
G4ThreeVector fMomentumMC
A particle initial momentum (from particle generator).
G4ThreeVector fMomentumTracker
A particle momentum at the entrance to the tracking detector.
G4double fResolutionEMCal
The resolution of the electromagnetic calorimeter.
G4double fEfficiencyEMCal
The efficiency of the electromagnetic calorimeter. Currently not used (equal to 1).
G4GLOB_DLL std::ostream G4cout
virtual void Print() const
Prints the information about the particle.
G4double fResolutionHCal
The resolution of the hadronic calorimeter.
G4double fResolutionTracker
A resolution of the tracking detector.
G4double fEnergyEMCal
An energy deposited in the electromagnetic calorimeter.
G4ThreeVector fPositionHCal
A position of the energy deposited in the hadronic calorimeter.
G4double fEfficiencyTracker
An efficiency of the tracking detector. Currently not used (equal to 1).
#define G4endl
Definition: G4ios.hh:61
G4int fPDG
A particle type (PDG code).
G4double fEnergyHCal
An energy deposited in the hadronic calorimeter.
G4double fEfficiencyHCal
The efficiency of the hadronic calorimeter. Currently not used (equal to 1).