// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // //J.M. Quesada (August2008). Based on: // // Hadronic Process: Nuclear De-excitations // by V. Lara (Oct 1998) // #ifndef G4EvaporationChannel_h #define G4EvaporationChannel_h 1 #include "G4VEvaporationChannel.hh" #include "G4VEmissionProbability.hh" #include "G4EvaporationProbability.hh" #include "G4NeutronEvaporationProbability.hh" #include "G4ProtonEvaporationProbability.hh" #include "G4DeuteronEvaporationProbability.hh" #include "G4TritonEvaporationProbability.hh" #include "G4He3EvaporationProbability.hh" #include "G4AlphaEvaporationProbability.hh" #include "G4VLevelDensityParameter.hh" #include "G4VCoulombBarrier.hh" #include "G4EvaporationLevelDensityParameter.hh" #include "G4NucleiProperties.hh" #include "Randomize.hh" #include "G4ParticleTable.hh" #include "G4IonTable.hh" class G4EvaporationChannel : public G4VEvaporationChannel { public: // constructor G4EvaporationChannel(const G4int theA, const G4int theZ, const G4String & aName, G4VEmissionProbability * aEmissionStrategy, G4VCoulombBarrier * aCoulombBarrier); public: // destructor ~G4EvaporationChannel(); void SetEmissionStrategy(G4VEmissionProbability * aEmissionStrategy) {theEvaporationProbabilityPtr = aEmissionStrategy;} void SetCoulombBarrierStrategy(G4VCoulombBarrier * aCoulombBarrier) {theCoulombBarrierPtr = aCoulombBarrier;} protected: // default constructor G4EvaporationChannel() {}; private: // copy constructor G4EvaporationChannel(const G4EvaporationChannel & right); private: const G4EvaporationChannel & operator=(const G4EvaporationChannel & right); public: G4bool operator==(const G4EvaporationChannel & right) const; G4bool operator!=(const G4EvaporationChannel & right) const; public: void Initialize(const G4Fragment & fragment); G4FragmentVector * BreakUp(const G4Fragment & theNucleus); // void SetLevelDensityParameter(G4VLevelDensityParameter * aLevelDensity); public: inline G4double GetEmissionProbability(void) const {return EmissionProbability;} inline G4double GetMaximalKineticEnergy(void) const { return MaximalKineticEnergy; } private: // Calculate Binding Energy for separate fragment from nucleus G4double CalcBindingEnergy(const G4int anA, const G4int aZ); // Calculate maximal kinetic energy that can be carried by fragment (in MeV) G4double CalcMaximalKineticEnergy(const G4double U); // Samples fragment kinetic energy. G4double GetKineticEnergy(const G4Fragment & aFragment); // This has to be removed and put in Random Generator G4ThreeVector IsotropicVector(const G4double Magnitude = 1.0); // Data Members // ************ private: // This data member define the channel. // They are intializated at object creation (constructor) time. // Atomic Number of ejectile G4int theA; // Charge of ejectile G4int theZ; // For evaporation probability calcualation G4VEmissionProbability * theEvaporationProbabilityPtr; // For Level Density calculation // G4bool MyOwnLevelDensity; G4VLevelDensityParameter * theLevelDensityPtr; // For Coulomb Barrier calculation G4VCoulombBarrier * theCoulombBarrierPtr; G4double CoulombBarrier; //--------------------------------------------------- // These values depend on the nucleus that is being evaporated. // They are calculated through the Initialize method which takes as parameters // the atomic number, charge and excitation energy of nucleus. // Residual Mass Number G4int ResidualA; // Residual Charge G4int ResidualZ; // Emission Probability G4double EmissionProbability; // Maximal Kinetic Energy that can be carried by fragment G4double MaximalKineticEnergy; }; #endif