Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
StepMaxProcess.cc
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 //
28 //
29 // $Id: StepMaxProcess.cc 67268 2013-02-13 11:38:40Z ihrivnac $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "StepMaxProcess.hh"
35 #include "StepMaxMessenger.hh"
36 #include "HistoManager.hh"
37 
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39 
41  : G4VDiscreteProcess(processName,type),fMess(0)
42 {
43  fMaxStep1 = fMaxStep2 = DBL_MAX;
44  fApplyMaxStep2 = true;
45  fMess = new StepMaxMessenger(this);
46 }
47 
48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49 
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
55 {
56  return (particle.GetPDGCharge() != 0. && !particle.IsShortLived());
57 }
58 
59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
60 
61 void StepMaxProcess::SetMaxStep1(G4double step) {fMaxStep1 = step;}
62 
63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64 
66 
67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68 
70  G4double,
72 {
73  // condition is set to "Not Forced"
74  *condition = NotForced;
75 
76  if (fApplyMaxStep2) {
77  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
78  G4int ih = 10;
79  if (analysisManager->GetH1Activation(ih))
80  fMaxStep2 = analysisManager->GetH1Width(ih)*analysisManager->GetH1Unit(ih);
81  return fMaxStep2;
82  }
83  else return fMaxStep1;
84 }
85 
86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87 
89  const G4Step&)
90 {
91  // do nothing
93  return &aParticleChange;
94 }
95 
96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4double condition(const G4ErrorSymMatrix &m)
void SetMaxStep1(G4double)
void ApplyMaxStep2(G4bool)
int G4int
Definition: G4Types.hh:78
virtual G4double PostStepGetPhysicalInteractionLength(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)
const XML_Char int const XML_Char * value
Definition: expat.h:331
bool G4bool
Definition: G4Types.hh:79
Definition of the StepMaxProcess class.
Definition: G4Step.hh:76
virtual void Initialize(const G4Track &)
G4ParticleChange aParticleChange
Definition: G4VProcess.hh:289
double G4double
Definition: G4Types.hh:76
G4ForceCondition
virtual G4bool IsApplicable(const G4ParticleDefinition &)
G4double GetPDGCharge() const
#define DBL_MAX
Definition: templates.hh:83
G4CsvAnalysisManager G4AnalysisManager
Definition: g4csv_defs.hh:77
StepMaxProcess(const G4String &processName="UserMaxStep", G4ProcessType type=fUserDefined)
G4ProcessType
virtual G4VParticleChange * PostStepDoIt(const G4Track &, const G4Step &)