ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4ePolarizedIonisation.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4ePolarizedIonisation.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 //
28 // GEANT4 Class header file
29 //
30 //
31 // File name: G4ePolarizedIonisation
32 //
33 // Author: A.Schaelicke on base of Vladimir Ivanchenko code
34 //
35 // Creation date: 10.11.2005
36 //
37 // Modifications:
38 //
39 // 10-11-05, include polarization description (A.Schaelicke)
40 // , create asymmetry table and determine interactionlength
41 // , update polarized differential cross section
42 //
43 // 20-08-06, modified interface (A.Schaelicke)
44 // 11-06-07, add PostStepGetPhysicalInteractionLength (A.Schalicke)
45 //
46 // Class Description:
47 //
48 // polarized version of G4eIonisation
49 // ----------------------------------------------------------------------------
50 // -------------------------------------------------------------------
51 //
52 
53 #ifndef G4ePolarizedIonisation_h
54 #define G4ePolarizedIonisation_h 1
55 
56 #include "G4VEnergyLossProcess.hh"
57 #include "G4Electron.hh"
58 #include "G4Positron.hh"
59 
60 class G4Material;
64 
66 {
67 
68 public:
69 
70  explicit G4ePolarizedIonisation(const G4String& name = "pol-eIoni");
71 
72  virtual ~G4ePolarizedIonisation();
73 
74  virtual G4bool IsApplicable(const G4ParticleDefinition& p) override;
75 
76  // Print out of the class parameters
77  virtual void PrintInfo() override;
78 
79 protected:
80 
82  const G4ParticleDefinition*) override;
83 
85  const G4Material*, G4double cut) override;
86 
87  // for polarization
89  const G4Track& track,
90  G4double previousStepSize,
91  G4ForceCondition* condition) override;
92 
93  virtual G4double GetMeanFreePath(const G4Track& track,
94  G4double previousStepSize,
95  G4ForceCondition* condition) override;
96 
97  virtual void BuildPhysicsTable(const G4ParticleDefinition&) override;
98 
99 private:
100 
101  void CleanTables();
102 
104 
106  const G4MaterialCutsCouple* couple,
108  G4double cut,
109  G4double &tasm);
110 
112 
114  operator=(const G4ePolarizedIonisation &right) = delete;
116 
120 
123 
124  // for polarization:
126 
129 };
130 
131 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
132 
133 #endif