Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
source
particles
utils
src
G4TextPPReporter.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
// the GEANT4 collaboration.
27
//
28
// By copying, distributing or modifying the Program (or any work
29
// based on the Program) you indicate your acceptance of this statement,
30
// and all its terms.
31
//
32
// $Id$
33
//
34
//
35
// ---------------------------------------------------------------
36
#include "
G4TextPPReporter.hh
"
37
#include "
G4ios.hh
"
38
#include "
globals.hh
"
39
#include "
G4SystemOfUnits.hh
"
40
#include "
G4ParticleTable.hh
"
41
#include "
G4ParticleDefinition.hh
"
42
#include "
G4DecayTable.hh
"
43
#include "
G4VDecayChannel.hh
"
44
#include "
G4Tokenizer.hh
"
45
#include <iomanip>
46
#include <fstream>
47
49
G4TextPPReporter::G4TextPPReporter
():
G4VParticlePropertyReporter
()
50
{
51
}
52
54
G4TextPPReporter::~G4TextPPReporter
()
55
{
56
}
57
59
void
G4TextPPReporter::Print
(
const
G4String
& option)
60
{
61
SparseOption
( option );
62
63
for
(
size_t
i=0; i<
pList
.size(); i++){
64
G4ParticleDefinition
* particle =
G4ParticleTable::GetParticleTable
()->
FindParticle
(
pList
[i]->GetParticleName() );
65
66
GeneratePropertyTable
(particle);
67
}
68
}
69
70
71
void
G4TextPPReporter::SparseOption
(
const
G4String
& option)
72
{
73
G4Tokenizer
savedToken( option );
74
75
// 1st option : base directory
76
baseDir
= savedToken();
77
if
(!
baseDir
.
isNull
()) {
78
if
(
baseDir
(
baseDir
.length()-1)!=
'/'
) {
79
baseDir
+=
"/"
;
80
}
81
}
82
}
83
84
85
86
void
G4TextPPReporter::GeneratePropertyTable
(
const
G4ParticleDefinition
* particle)
87
{
88
G4String
name
= particle->
GetParticleName
();
89
90
//--- open file -----
91
G4String
fileName =
baseDir
+ name +
".txt"
;
92
// exception
93
if
(name ==
"J/psi"
) fileName =
baseDir
+
"jpsi.txt"
;
94
95
std::ofstream
outFile
(fileName, std::ios::out );
96
outFile.setf( std::ios:: scientific, std::ios::floatfield );
97
outFile << std::setprecision(7) <<
G4endl
;
98
99
// particle name encoding
100
outFile << name <<
" "
101
<< particle->
GetPDGEncoding
() <<
G4endl
;
102
103
// IJPC
104
outFile << particle->
GetPDGiIsospin
() <<
" "
105
<< particle->
GetPDGiSpin
() <<
" "
106
<< particle->
GetPDGiParity
() <<
" "
107
<< particle->
GetPDGiConjugation
() <<
G4endl
;
108
109
// mass, width, charge
110
outFile << particle->
GetPDGMass
()/
GeV
<<
" "
111
<< particle->
GetPDGWidth
()/
GeV
<<
" "
112
<< particle->
GetPDGCharge
()/
eplus
<<
G4endl
;
113
114
// life time
115
outFile << particle->
GetPDGLifeTime
()/
second
<<
G4endl
;
116
117
// Decay Table
118
G4DecayTable
* dcyTable = particle->
GetDecayTable
();
119
if
(dcyTable != 0) {
120
for
(
G4int
i=0; i< dcyTable->
entries
(); i++){
121
G4VDecayChannel
* channel = dcyTable->
GetDecayChannel
(i);
122
// column 1 : BR
123
outFile << channel->
GetBR
() <<
" "
;
124
// column 2. : daughters
125
outFile << channel->
GetNumberOfDaughters
() <<
" "
;
126
// column 3 : Kinematics
127
outFile << channel->
GetKinematicsName
() <<
" "
;
128
// daughters
129
for
(
G4int
j=0; j< channel->
GetNumberOfDaughters
(); j++){
130
outFile << channel->
GetDaughter
(j)->
GetParticleName
() <<
" "
;
131
}
132
outFile <<
G4endl
;
133
}
134
}
135
}
136
137
138
139
140
Generated on Sat May 25 2013 14:33:24 for Geant4 by
1.8.4