Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
source
parameterisations
gflash
include
GFlashSamplingShowerTuning.hh
이 파일의 문서화 페이지로 가기
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
//
27
// $Id: GFlashSamplingShowerTuning.hh 68057 2013-03-13 14:46:00Z gcosmo $
28
//
29
//
30
//---------------------------------------------------------------
31
// GEANT 4 class header file
32
//
33
// GFlashSamplingShowerTuning
34
//
35
// Class description:
36
//
37
// Tuning class for GFlash homogeneous shower parameterisation.
38
// Definitions:
39
// <t>: shower center of gravity
40
// T: Depth at shower maximum
41
// Ec: Critical energy
42
// X0: Radiation length
43
// y = E/Ec
44
//
45
// Please, see hep-ex/0001020 for details.
46
47
// Author: Joanna Weng - 11.2005
48
//---------------------------------------------------------------
49
#ifndef GFlashSamplingShowerTuning_hh
50
#define GFlashSamplingShowerTuning_hh
51
52
#include "
GVFlashHomoShowerTuning.hh
"
53
54
class
GFlashSamplingShowerTuning
:
public
GVFlashHomoShowerTuning
55
{
56
public
:
57
58
GFlashSamplingShowerTuning
() {}
59
virtual
~GFlashSamplingShowerTuning
() {}
60
61
62
public
:
// with description
63
64
G4double
ParsAveT1
(){
return
-0.55;}
// t1
65
G4double
ParsAveT2
(){
return
-0.69;}
// t2
66
// T_sam = log(exp( log T_hom) + t1*Fs-1 + t2*(1-ehat))
67
68
G4double
ParsAveA1
(){
return
-0.476; }
// a1
69
// alpha_sam = log(exp(log alphah_hom) +(a1*Fs-1))
70
71
G4double
ParsSigLogT1
(){
return
-2.5;}
// t1
72
G4double
ParsSigLogT2
(){
return
1.25;}
// t2
73
// std::sqrt(var(ln(T_sam))) = 1/(t+t2*ln(y))
74
75
G4double
ParsSigLogA1
(){
return
-0.82;}
// a1
76
G4double
ParsSigLogA2
(){
return
0.79; }
// a2
77
// std::sqrt(var(ln(alpha_sam))) = 1/(a1+a2*ln(y))
78
79
G4double
ParsRho1
(){
return
0.784; }
// r1
80
G4double
ParsRho2
(){
return
-0.023;}
// r2
81
// Correlation(ln(T),ln(alpha))=r1+r2*ln(y)
82
83
// Radial profiles
84
// f(r) := (1/dE(t))(dE(t,r)/dr)
85
// Ansatz:
86
// f(r) = p(2*r*Rc**2)/(r**2+Rc**2)**2+(1-p)*(2*r*Rt**2)/(r**2+Rt**2)**2,
87
// 0<p<1
88
89
G4double
ParsRC1
(){
return
-0.0203; }
// c1
90
G4double
ParsRC2
(){
return
0.0397; }
// c2
91
// Rc_sam = Rc_hom + c1 * (1-ehat) + c2 *Fs-1*exp (-tau)
92
93
G4double
ParsRT1
(){
return
-0.14; }
// t1
94
G4double
ParsRT2
(){
return
-0.495; }
// t2
95
// Rt_sam = Rc_hom + t1 * (1-ehat) + t2 *Fs-1*exp (-tau)
96
97
G4double
ParsWC1
(){
return
0.348; }
// c1
98
G4double
ParsWC2
(){
return
-0.642;}
// c2
99
// W_sam = W_hom + (1-ehat)*(c1 + c2 *Fs-1 * exp (- (tau -1 )**2))
100
101
// Fluctuations on radial profiles through number of spots
102
// The total number of spots needed for a shower is
103
104
G4double
ParsSpotN1
(){
return
10.3; }
// n1
105
G4double
ParsSpotN2
(){
return
0.959;}
// n2
106
// Ns = n1*ln(Z)(E/GeV)**n2
107
108
// The number of spots per longitudinal interval is:
109
// (1/Ns)(dNs(t)/dt) = f(t)
110
// = (beta*t)**(alpha-1)*beta*std::exp(-beta*t)/Gamma(alpha)
111
// <t> = alpha_s/beta_s
112
// Ts = (alpha_s-1)/beta_s
113
// and
114
// Ts = T*(t1+t2*Z)
115
// alpha_s = alpha*(a1+a2*Z)
116
117
G4double
ParsSpotT1
(){
return
0.813; }
// t1
118
G4double
ParsSpotT2
(){
return
0.0019;}
// t2
119
120
G4double
ParsSpotA1
(){
return
0.844; }
//a1
121
G4double
ParsSpotA2
(){
return
0.0026;}
//a2
122
123
// Resolution
124
125
G4double
ConstantResolution
(){
return
0.00; }
126
G4double
NoiseResolution
() {
return
0.00; }
// not used
127
G4double
SamplingResolution
(){
return
0.11; }
// not used
128
129
};
130
131
#endif
GFlashSamplingShowerTuning::ParsRho1
G4double ParsRho1()
Definition:
GFlashSamplingShowerTuning.hh:79
GFlashSamplingShowerTuning::~GFlashSamplingShowerTuning
virtual ~GFlashSamplingShowerTuning()
Definition:
GFlashSamplingShowerTuning.hh:59
GFlashSamplingShowerTuning::ParsSpotN2
G4double ParsSpotN2()
Definition:
GFlashSamplingShowerTuning.hh:105
GFlashSamplingShowerTuning::NoiseResolution
G4double NoiseResolution()
Definition:
GFlashSamplingShowerTuning.hh:126
GFlashSamplingShowerTuning::ParsRT1
G4double ParsRT1()
Definition:
GFlashSamplingShowerTuning.hh:93
GFlashSamplingShowerTuning::ParsAveT2
G4double ParsAveT2()
Definition:
GFlashSamplingShowerTuning.hh:65
GFlashSamplingShowerTuning::ParsRho2
G4double ParsRho2()
Definition:
GFlashSamplingShowerTuning.hh:80
GFlashSamplingShowerTuning
Definition:
GFlashSamplingShowerTuning.hh:54
GVFlashHomoShowerTuning
Definition:
GVFlashHomoShowerTuning.hh:64
GFlashSamplingShowerTuning::ParsSigLogA1
G4double ParsSigLogA1()
Definition:
GFlashSamplingShowerTuning.hh:75
GFlashSamplingShowerTuning::ParsRC1
G4double ParsRC1()
Definition:
GFlashSamplingShowerTuning.hh:89
GFlashSamplingShowerTuning::ParsSpotT1
G4double ParsSpotT1()
Definition:
GFlashSamplingShowerTuning.hh:117
GFlashSamplingShowerTuning::ParsSpotN1
G4double ParsSpotN1()
Definition:
GFlashSamplingShowerTuning.hh:104
GFlashSamplingShowerTuning::ParsSpotT2
G4double ParsSpotT2()
Definition:
GFlashSamplingShowerTuning.hh:118
G4double
double G4double
Definition:
G4Types.hh:76
GFlashSamplingShowerTuning::ParsSigLogA2
G4double ParsSigLogA2()
Definition:
GFlashSamplingShowerTuning.hh:76
GFlashSamplingShowerTuning::ParsSpotA2
G4double ParsSpotA2()
Definition:
GFlashSamplingShowerTuning.hh:121
GFlashSamplingShowerTuning::GFlashSamplingShowerTuning
GFlashSamplingShowerTuning()
Definition:
GFlashSamplingShowerTuning.hh:58
GFlashSamplingShowerTuning::ParsAveT1
G4double ParsAveT1()
Definition:
GFlashSamplingShowerTuning.hh:64
GFlashSamplingShowerTuning::ParsSigLogT1
G4double ParsSigLogT1()
Definition:
GFlashSamplingShowerTuning.hh:71
GFlashSamplingShowerTuning::ParsSpotA1
G4double ParsSpotA1()
Definition:
GFlashSamplingShowerTuning.hh:120
GFlashSamplingShowerTuning::ParsRC2
G4double ParsRC2()
Definition:
GFlashSamplingShowerTuning.hh:90
GFlashSamplingShowerTuning::ConstantResolution
G4double ConstantResolution()
Definition:
GFlashSamplingShowerTuning.hh:125
GFlashSamplingShowerTuning::ParsSigLogT2
G4double ParsSigLogT2()
Definition:
GFlashSamplingShowerTuning.hh:72
GFlashSamplingShowerTuning::ParsRT2
G4double ParsRT2()
Definition:
GFlashSamplingShowerTuning.hh:94
GFlashSamplingShowerTuning::SamplingResolution
G4double SamplingResolution()
Definition:
GFlashSamplingShowerTuning.hh:127
GFlashSamplingShowerTuning::ParsWC2
G4double ParsWC2()
Definition:
GFlashSamplingShowerTuning.hh:98
GFlashSamplingShowerTuning::ParsWC1
G4double ParsWC1()
Definition:
GFlashSamplingShowerTuning.hh:97
GVFlashHomoShowerTuning.hh
GFlashSamplingShowerTuning::ParsAveA1
G4double ParsAveA1()
Definition:
GFlashSamplingShowerTuning.hh:68
다음에 의해 생성됨 :
1.8.5