Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GFlashShowerModel.hh
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 //
27 // $Id: GFlashShowerModel.hh 68057 2013-03-13 14:46:00Z gcosmo $
28 //
29 //
30 //---------------------------------------------------------------
31 // GEANT 4 class header file
32 //
33 // GFlashShowerModel
34 //
35 // Class description:
36 //
37 // GFlash parameterisation shower model.
38 
39 // Authors: E.Barberio & Joanna Weng - 9.11.04
40 //---------------------------------------------------------------
41 #ifndef GFlashShowerModel_h
42 #define GFlashShowerModel_h 1
43 
44 //G4 Standard
46 #include "G4VPhysicalVolume.hh"
47 #include "G4ios.hh"
48 
49 //GFlash
51 #include "GFlashParticleBounds.hh"
52 #include "GFlashEnergySpot.hh"
53 #include "GFlashHitMaker.hh"
54 #include <vector>
55 
59 
61 {
62  public: // with description
63 
67  // Constructors, destructor
68 
71  void DoIt(const G4FastTrack&, G4FastStep&);
72  // Checks whether conditions of fast parameterisation are fullfilled
73 
74  // setting
75 
76  inline void SetFlagParamType(G4int I)
77  { FlagParamType = I; }
79  { FlagParticleContainment = I; }
80  inline void SetStepInX0(G4double Lenght)
81  { StepInX0=Lenght; }
83  { Parameterisation=&DP;}
84  inline void SetHitMaker(GFlashHitMaker &Maker)
85  { HMaker=&Maker; }
86  inline void SetParticleBounds(GFlashParticleBounds &SpecificBound)
87  { PBound =&SpecificBound; }
88 
89  // getting
90 
92  { return FlagParamType; }
94  { return FlagParticleContainment; }
96  { return StepInX0; }
97 
98  public: // without description
99 
100  // Gets ?
103 
104  private:
105 
106  void ElectronDoIt(const G4FastTrack&, G4FastStep&);
107  // void GammaDoIt(const G4FastTrack&, G4FastStep&);
108  // void NeutrinoDoIt(const G4FastTrack&, G4FastStep&);
109  G4bool CheckParticleDefAndContainment(const G4FastTrack &fastTrack);
110  G4bool CheckContainment(const G4FastTrack &fastTrack);
111 
112  private:
113 
114  GFlashHitMaker *HMaker;
115  GFlashShowerModelMessenger* Messenger;
116 
117  //Control Flags
118  G4int FlagParamType; ///0=no GFlash 1=only em showers parametrized
119  G4int FlagParticleContainment; ///0=no check ///1=only fully contained...
120  G4double StepInX0;
121  G4double EnergyStop;
122 
123 };
124 #endif
void SetHitMaker(GFlashHitMaker &Maker)
void DoIt(const G4FastTrack &, G4FastStep &)
G4bool IsApplicable(const G4ParticleDefinition &)
void SetParticleBounds(GFlashParticleBounds &SpecificBound)
GFlashParticleBounds * PBound
int G4int
Definition: G4Types.hh:78
void SetFlagParamType(G4int I)
bool G4bool
Definition: G4Types.hh:79
void SetFlagParticleContainment(G4int I)
G4bool ModelTrigger(const G4FastTrack &)
double G4double
Definition: G4Types.hh:76
GFlashShowerModel(G4String, G4Envelope *)
void SetParameterisation(GVFlashShowerParameterisation &DP)
G4int GetFlagParticleContainment()
void SetStepInX0(G4double Lenght)
GVFlashShowerParameterisation * Parameterisation