source: trunk/source/processes/decay/include/G4UnknownDecay.hh @ 966

Last change on this file since 966 was 961, checked in by garnier, 15 years ago

update processes

File size: 5.4 KB
Line 
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: G4UnknownDecay.hh,v 1.3 2006/06/29 19:30:56 gunter Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
29//
30//
31// ------------------------------------------------------------
32//      GEANT 4 class header file
33//
34//
35#ifndef G4UnknownDecay_h
36#define G4UnknownDecay_h 1
37
38#include "G4ios.hh"
39#include "globals.hh"
40#include "G4VDiscreteProcess.hh"
41#include "G4ParticleChangeForDecay.hh"
42
43class G4UnknownDecay : public G4VDiscreteProcess
44{
45 // Class Description
46  //  This class is a decay process for "unknown" particle.
47
48  public:
49    //  Constructors
50    G4UnknownDecay(const G4String& processName ="UnknownDecay");
51
52    //  Destructor
53    virtual ~G4UnknownDecay();
54
55  private:
56    //  copy constructor
57      G4UnknownDecay(const G4UnknownDecay &right);
58
59    //  Assignment Operation (generated)
60      G4UnknownDecay & operator=(const G4UnknownDecay &right);
61
62  public: //With Description
63 
64     virtual G4VParticleChange *PostStepDoIt(
65                             const G4Track& aTrack,
66                             const G4Step& aStep
67                            );
68
69     virtual void BuildPhysicsTable(const G4ParticleDefinition&); 
70     // In G4UnknownDecay, thePhysicsTable stores values of
71    //    beta * std::sqrt( 1 - beta*beta)
72    //  as a function of normalized kinetic enregy (=Ekin/mass),
73    //  becasuse this table is universal for all particle types,
74
75
76    virtual G4bool IsApplicable(const G4ParticleDefinition&);
77    // returns "true" if the decay process can be applied to
78    // the particle type.
79 
80  protected: // With Description
81    virtual G4VParticleChange* DecayIt(
82                             const G4Track& aTrack,
83                             const G4Step&  aStep
84                            );
85    // The DecayIt() method returns by pointer a particle-change object,
86    // which has information of daughter particles.
87
88  public:
89
90    virtual G4double PostStepGetPhysicalInteractionLength(
91                             const G4Track& track,
92                             G4double   previousStepSize,
93                             G4ForceCondition* condition
94                            );
95
96
97  protected: // With Description
98    // GetMeanFreePath returns ctau*beta*gamma for decay in flight
99    virtual G4double GetMeanFreePath(const G4Track& aTrack,
100                              G4double   previousStepSize,
101                              G4ForceCondition* condition
102                             );
103
104  public:
105     void  SetVerboseLevel(G4int value);
106     G4int GetVerboseLevel() const;
107
108  private:
109     G4int verboseLevel;
110     // controle flag for output message
111     //  0: Silent
112     //  1: Warning message
113     //  2: More
114
115  private:
116    // HighestValue.
117    const G4double HighestValue;
118 
119    // ParticleChange for decay process
120    G4ParticleChangeForDecay fParticleChangeForDecay;
121   
122};
123
124inline 
125 G4double G4UnknownDecay::PostStepGetPhysicalInteractionLength(
126                             const G4Track& track,
127                             G4double   /*previousStepSize*/,
128                             G4ForceCondition* condition
129                            )
130{
131  // pre-assigned UnknownDecay time
132  G4double pTime = track.GetDynamicParticle()->GetPreAssignedDecayProperTime();
133
134  if (pTime < 0.) pTime = DBL_MIN;
135
136  // condition is set to "Not Forced"
137  *condition = NotForced;
138 
139  // reminder proper time
140  G4double remainder = pTime - track.GetProperTime();
141  if (remainder <= 0.0) remainder = DBL_MIN;
142 
143  // use pre-assigned Decay time to determine PIL
144  //return GetMeanFreePath(track, previousStepSize, condition);
145  return remainder*c_light;
146
147}
148
149inline
150 void  G4UnknownDecay::SetVerboseLevel(G4int value){ verboseLevel = value; }
151
152inline
153 G4int G4UnknownDecay::GetVerboseLevel() const { return verboseLevel; }
154
155inline 
156  G4VParticleChange* G4UnknownDecay::PostStepDoIt(
157                             const G4Track& aTrack,
158                             const G4Step&  aStep
159                            )
160{
161  return DecayIt(aTrack, aStep);
162}
163
164#endif
165
166
167
168
169
170
171
172
173
174
Note: See TracBrowser for help on using the repository browser.