Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // 27 // ------------------------------------------- 24 // -------------------------------------------------------------- 28 // GEANT 4 - Underground Dark Matter Detecto 25 // GEANT 4 - Underground Dark Matter Detector Advanced Example 29 // 26 // 30 // For information related to this code c 27 // For information related to this code contact: Alex Howard 31 // e-mail: alexander.howard@cern.ch << 28 // e-mail: a.s.howard@ic.ac.uk 32 // ------------------------------------------- 29 // -------------------------------------------------------------- 33 // Comments 30 // Comments 34 // 31 // 35 // Underground Advanced 32 // Underground Advanced 36 // by A. Howard and H. Araujo 33 // by A. Howard and H. Araujo 37 // (27th November 2001) 34 // (27th November 2001) 38 // 35 // 39 // SpecialCuts program 36 // SpecialCuts program 40 // ------------------------------------------- 37 // -------------------------------------------------------------- 41 38 42 #include "DMXSpecialCuts.hh" 39 #include "DMXSpecialCuts.hh" 43 #include "G4VParticleChange.hh" 40 #include "G4VParticleChange.hh" 44 #include "G4Track.hh" 41 #include "G4Track.hh" 45 #include "G4Step.hh" 42 #include "G4Step.hh" 46 43 47 DMXSpecialCuts::DMXSpecialCuts(const G4String& 44 DMXSpecialCuts::DMXSpecialCuts(const G4String& aName) 48 : G4VProcess(aName) 45 : G4VProcess(aName) 49 { 46 { 50 if (verboseLevel>1) { 47 if (verboseLevel>1) { 51 G4cout << GetProcessName() << " is create 48 G4cout << GetProcessName() << " is created "<< G4endl; 52 } 49 } 53 } 50 } 54 51 55 DMXSpecialCuts::~DMXSpecialCuts() 52 DMXSpecialCuts::~DMXSpecialCuts() 56 { 53 { 57 } 54 } 58 55 59 G4VParticleChange* DMXSpecialCuts::PostStepDoI 56 G4VParticleChange* DMXSpecialCuts::PostStepDoIt( 60 const G4Track& aTrack, 57 const G4Track& aTrack, 61 const G4Step& 58 const G4Step& 62 ) 59 ) 63 // 60 // 64 // Stop the current particle, if requested by 61 // Stop the current particle, if requested by G4UserLimits 65 // 62 // 66 { 63 { 67 aParticleChange.Initialize(aTrack); 64 aParticleChange.Initialize(aTrack); 68 aParticleChange.ProposeEnergy(0.) ; 65 aParticleChange.ProposeEnergy(0.) ; 69 aParticleChange.ProposeLocalEnergyDeposit ( 66 aParticleChange.ProposeLocalEnergyDeposit (aTrack.GetKineticEnergy()) ; 70 aParticleChange.ProposeTrackStatus(fStopBut 67 aParticleChange.ProposeTrackStatus(fStopButAlive); 71 return &aParticleChange; 68 return &aParticleChange; 72 } 69 } 73 70 74 G4double DMXSpecialCuts::PostStepGetPhysicalIn 71 G4double DMXSpecialCuts::PostStepGetPhysicalInteractionLength( 75 const G4Track&, 72 const G4Track&, 76 G4double, 73 G4double, 77 G4ForceCondition* 74 G4ForceCondition* 78 ) 75 ) 79 { 76 { 80 return DBL_MAX; 77 return DBL_MAX; 81 } 78 } 82 79 83 80