Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
extended/radioactivedecay/Activation/src/HistoManager.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 //
28 //
29 // $Id: HistoManager.cc 67909 2013-03-12 18:51:09Z vnivanch $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "HistoManager.hh"
35 #include "G4UnitsTable.hh"
36 
37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
38 
40  : fFileName("Activation")
41 {
42  Book();
43 }
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 {
49  delete G4AnalysisManager::Instance();
50 }
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
54 void HistoManager::Book()
55 {
56  // Create or get analysis manager
57  // The choice of analysis technology is done via selection of a namespace
58  // in HistoManager.hh
59  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
60  analysisManager->SetFileName(fFileName);
61  analysisManager->SetVerboseLevel(1);
62  analysisManager->SetActivation(true); //enable inactivation of histograms
63 
64  // Define histograms start values
66  const G4String id[] = {"0","1","2","3","4","5","6","7","8","9",
67  "10","11","12","13",
68  "14","15","16","17","18","19","20","21","22","23",
69  "24","25","26","27","28","29","30","31","32","33",
70  "34","35","36","37","38","39","40","41","42","43" };
71 
72  const G4String title[] =
73  { "dummy", //0
74  "total energy deposit", //1
75  "Edep (MeV/mm) along beam directiom", //2
76  "total kinetic energy emerging", //3
77  "energy spectrum of emerging gamma", //4
78  "energy spectrum of emerging e+-", //5
79  "energy spectrum of emerging neutrons", //6
80  "energy spectrum of emerging protons", //7
81  "energy spectrum of emerging deuterons", //8
82  "energy spectrum of emerging alphas", //9
83  "energy spectrum of all others emerging ions", //10
84  "energy spectrum of all others emerging baryons", //11
85  "energy spectrum of all others emerging mesons", //12
86  "energy spectrum of all others emerging leptons (neutrinos)", //13
87  "dN/dt (becquerel) of emerging gamma", //14
88  "dN/dt (becquerel) of emerging e+- ", //15
89  "dN/dt (becquerel) of emerging neutrons", //16
90  "dN/dt (becquerel) of emerging protons", //17
91  "dN/dt (becquerel) of emerging deuterons", //18
92  "dN/dt (becquerel) of emerging alphas", //19
93  "dN/dt (becquerel) of all others emerging ions", //20
94  "dN/dt (becquerel) of all others emerging baryons", //21
95  "dN/dt (becquerel) of all others emerging mesons", //22
96  "dN/dt (becquerel) of all others emerging leptons (neutrinos)" //23
97  };
98 
99  // Default values (to be reset via /analysis/h1/set command)
100  G4int nbins = 100;
101  G4double vmin = 0.;
102  G4double vmax = 100.;
103 
104  // Create all histograms as inactivated
105  // as we have not yet set nbins, vmin, vmax
106  for (G4int k=0; k<kMaxHisto1; k++) {
107  G4int ih = analysisManager->CreateH1(id[k], title[k], nbins, vmin, vmax);
108  analysisManager->SetH1Activation(ih, false);
109  }
110 
111  // population of species
112  for (G4int k=kMaxHisto1; k<kMaxHisto2; k++) {
113  G4int ih = analysisManager->CreateH1(id[k], " population",nbins,vmin,vmax);
114  analysisManager->SetH1Activation(ih, false);
115  }
116 }
117 
118 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
double G4double
Definition: G4Types.hh:76
G4CsvAnalysisManager G4AnalysisManager
Definition: g4csv_defs.hh:77
int G4int
Definition: G4Types.hh:78