source: trunk/source/parameterisations/gflash/include/GFlashHomoShowerParameterisation.hh@ 1103

Last change on this file since 1103 was 1058, checked in by garnier, 17 years ago

file release beta

File size: 4.9 KB
RevLine 
[823]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: GFlashHomoShowerParameterisation.hh,v 1.4 2006/06/29 19:13:47 gunter Exp $
[1058]28// GEANT4 tag $Name: geant4-09-02-ref-02 $
[823]29//
30//
31// ---------------------------------------------------------------
32// GEANT 4 class header file
33//
34// GFlashHomoShowerParameterisation
35//
36// Class description:
37//
38// GFlash homogeneous shower parameterisation.
39
40// Author: Joanna Weng - 02.2004
41// ---------------------------------------------------------------
42#ifndef GFlashHomoShowerParameterisation_h
43#define GFlashHomoShowerParameterisation_h 1
44
45#include "globals.hh"
46#include "GVFlashHomoShowerTuning.hh"
47#include "GVFlashShowerParameterisation.hh"
48
49class G4Material;
50
51class GFlashHomoShowerParameterisation : public GVFlashShowerParameterisation
52{
53 public: // with description
54
55 GFlashHomoShowerParameterisation(G4Material * aMat,
56 GVFlashHomoShowerTuning * aPar = 0);
57 ~GFlashHomoShowerParameterisation();
58
59 void ComputeRadialParameters(G4double y, G4double Tau);
60 void GenerateLongitudinalProfile(G4double Energy);
61 void ComputeZAX0EFFetc();
62
63 G4double IntegrateEneLongitudinal(G4double LongitudinalStep);
64 G4double IntegrateNspLongitudinal(G4double LongitudinalStep);
65 G4double ComputeTau(G4double LongitudinalPosition);
66
67 G4double GeneratePhi();
68 G4double GenerateRadius(G4int ispot, G4double Energy,
69 G4double LongitudinalPosition);
70 G4double GenerateExponential(G4double Energy);
71 void SetMaterial(G4Material *mat);
72
73 inline G4double GetAveR99() {return (3.5 * Rm);}
74 inline G4double GetAveR90() {return (1.5 * Rm);} //ok
75
76 inline G4double GetAveTmx() {return (X0 * std::exp(AveLogTmaxh));}
77 inline G4double GetAveT99() {return (X0 * AveLogTmaxh/(AveLogAlphah-1.00));}
78 inline G4double GetAveT90() {return (2.5* X0*std::exp( AveLogTmaxh) );}
79
80 inline G4double GetNspot(){ return NSpot;}
81 inline G4double GetX0(){return X0;}
82 inline G4double GetEc(){return Ec;}
83 inline G4double GetRm(){return Rm;}
84
85 private:
86
87 G4Material *material;
88
89 //Resolution
90 G4double ConstantResolution;
91 G4double NoiseResolution;
92 G4double SamplingResolution;
93
94 // parametrization parameters
95 GVFlashHomoShowerTuning * thePar;
96
97 // Cashed parameters:
98 // Longitudinal Coefficients for a homogeneous calo
99 G4double ParAveT1;
100 G4double ParAveA1,ParAveA2,ParAveA3;
101 G4double ParSigLogT1,ParSigLogT2;
102 G4double ParSigLogA1,ParSigLogA2;
103 G4double ParRho1,ParRho2;
104
105 void ComputeLongitudinalParameters(G4double y);
106 void GenerateEnergyProfile(G4double y);
107 void GenerateNSpotProfile(G4double y);
108
109 // Radial Coefficients
110 G4double ParRC1,ParRC2,ParRC3,ParRC4;
111 G4double ParWC1,ParWC2,ParWC3;
112 G4double ParWC4,ParWC5,ParWC6;
113 G4double ParRT1,ParRT2,ParRT3,ParRT4;
114 G4double ParRT5,ParRT6;
115
116 // Spot multiplicity Coefficients
117 G4double ParSpotT1,ParSpotT2,ParSpotA1, ParSpotA2;
118 G4double ParSpotN1,ParSpotN2;
119
120 // PARAMETRISATION variables (Energy & position dependent)
121 // Longitudinal
122 // homogeneous
123 G4double AveLogAlphah,AveLogTmaxh;
124 G4double SigmaLogAlphah,SigmaLogTmaxh;
125 G4double Rhoh;
126 G4double Alphah,Tmaxh,Betah;
127
128 // Multiplicity
129 G4double NSpot,AlphaNSpot,TNSpot,BetaNSpot;
130
131 //Radial
132 G4double RadiusCore, WeightCore,RadiusTail;
133};
134
135#endif
136
Note: See TracBrowser for help on using the repository browser.