Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
examples/advanced/nanobeam/src/RunAction.cc
이 파일의 문서화 페이지로 가기
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 // Please cite the following paper if you use this software
27 // Nucl.Instrum.Meth.B260:20-27, 2007
28 
29 // #define MATRIX_BOUND_CHECK
30 
31 #include "RunAction.hh"
32 #include "Analysis.hh"
33 #include "G4AutoLock.hh"
34 
35 namespace
36 {
38 }
39 
40 using namespace std;
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
43 
45 :fDetector(det),fPrimary(pri)
46 {}
47 
48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
49 
51 {}
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
54 
55 void RunAction::BeginOfRunAction(const G4Run* /*aRun*/)
56 {
57  // Vector initialization
58 
59  fRow=0;
60 
61  fXVector = CLHEP::HepVector(32);
62  fYVector = CLHEP::HepVector(32);
63  fThetaVector = CLHEP::HepVector(32);
64  fPhiVector = CLHEP::HepVector(32);
65 
66  // Histograms
67 
68  // Get/create analysis manager
69  G4cout << "##### Create analysis manager " << " " << this << G4endl;
70 
71  G4AnalysisManager* man = G4AnalysisManager::Instance();
72 
73  G4cout << "Using " << man->GetType() << " analysis manager" << G4endl;
74 
75  // Open an output file
76  man->OpenFile("nanobeam");
77  man->SetFirstHistoId(1);
78  man->SetFirstNtupleId(1);
79 
80  // Create 1st ntuple (id = 1)
81  man->CreateNtuple("ntuple0", "BeamProfile");
82  man->CreateNtupleDColumn("xIn");
83  man->CreateNtupleDColumn("yIn");
84  man->CreateNtupleDColumn("zIn");
85  man->FinishNtuple();
86  G4cout << "Ntuple-1 created" << G4endl;
87 
88  // Create 2nd htuple (id = 2)
89  man->CreateNtuple("ntuple1","Grid");
90  man->CreateNtupleDColumn("xIn");
91  man->CreateNtupleDColumn("yIn");
92  man->CreateNtupleDColumn("e");
93  man->FinishNtuple();
94  G4cout << "Ntuple-2 created" << G4endl;
95 
96  // Create 3rd ntuple (id = 3)
97  man->CreateNtuple("ntuple2","Coef");
98  man->CreateNtupleDColumn("xIn");
99  man->CreateNtupleDColumn("yIn");
100  man->CreateNtupleDColumn("thetaIn");
101  man->CreateNtupleDColumn("phiIn");
102  man->FinishNtuple();
103  G4cout << "Ntuple-3 created" << G4endl;
104 
105  return;
106 
107 }
108 
109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
110 
111 void RunAction::EndOfRunAction(const G4Run* /*aRun*/)
112 {
113 
114 if (fDetector->GetCoef()==1)
115 {
116  // 17/12/2013 - thanks to A. Dotti
117  // CLHEP Matrix inversion (as for CLHEP version 2.1.4.1)
118  // is not thread safe, we need to protect this code.
119  // Since this is not performance critical we simply lock
120  // all this part.
121  G4AutoLock l(&aMutex);
122  //
123 
124  CLHEP::HepMatrix m;
125 
126  // VECTOR READING
127  // VECTOR READING
128 
129  m = CLHEP::HepMatrix(32,32);
130  m = fPrimary->GetMatrix();
131 
132  G4cout << G4endl;
133  G4cout << "===> NANOBEAM LINE INTRINSIC ABERRATION COEFFICIENTS (units of micrometer and mrad) :" << G4endl;
134  G4cout << G4endl;
135 
136  int inv;
137 
138  m.invert(inv);
139  CLHEP::HepVector tmp(32,0);
140  tmp=m*fXVector;
141  CLHEP::HepVector b;
142  b=tmp.sub(2,2); G4cout << "<x|theta>=" << b << G4endl;
143  b=tmp.sub(8,8); G4cout << "<x|theta*delta>=" << b << G4endl;
144  b=tmp.sub(10,10); G4cout << "<x|theta^3>=" << b << G4endl;
145  b=tmp.sub(12,12); G4cout << "<x|theta*phi^2>=" << b << G4endl;
146  m.invert(inv);
147 
148  m.invert(inv);
149  tmp = m*fThetaVector;
150  m.invert(inv);
151  b=tmp.sub(2,2); G4cout << "<x|x>=" << b << G4endl;
152 
153  m.invert(inv);
154  tmp=m*fYVector;
155  b=tmp.sub(3,3); G4cout << "<y|phi>=" << b << G4endl;
156  b=tmp.sub(9,9); G4cout << "<y|phi*delta>=" << b << G4endl;
157  b=tmp.sub(11,11); G4cout << "<y|theta^2*phi>=" << b << G4endl;
158  b=tmp.sub(13,13); G4cout << "<y|phi^3>=" << b << G4endl;
159  m.invert(inv);
160 
161  m.invert(inv);
162  tmp = m*fPhiVector;
163  m.invert(inv);
164  b=tmp.sub(3,3); G4cout << "<y|y>=" << b << G4endl;
165 
166 }
167 
168  // Save histograms
169 
170  G4AnalysisManager* man = G4AnalysisManager::Instance();
171  man->Write();
172  man->CloseFile();
173 
174  // Complete clean-up
175 
176  delete G4AnalysisManager::Instance();
177 
178 }
#define G4endl
Definition: G4ios.hh:61
Float_t tmp
static constexpr double m
Definition: G4SIunits.hh:129
#define G4MUTEX_INITIALIZER
Definition: G4Threading.hh:88
The primary generator action class with particle gun.
G4CsvAnalysisManager G4AnalysisManager
Definition: g4csv_defs.hh:77
G4Mutex aMutex
Definition: G4Run.hh:46
G4GLOB_DLL std::ostream G4cout
Simple detector construction with a box volume placed in a world.
std::mutex G4Mutex
Definition: G4Threading.hh:84