Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:58:45

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //
0027 // 20100315  M. Kelsey -- Remove "using" directive and unnecessary #includes.
0028 // 20100413  M. Kelsey -- Pass G4CollisionOutput by ref to ::collide()
0029 // 20100517  M. Kelsey -- Inherit from common base class
0030 // 20100714  M. Kelsey -- Switch to new G4CascadeColliderBase class
0031 // 20100914  M. Kelsey -- Migrate to integer A and Z
0032 // 20130620  Address Coverity complaint about missing copy actions
0033 // 20130622  Inherit from G4CascadeDeexciteBase, move to deExcite() interface
0034 //      with G4Fragment
0035 // 20130808  Use new object-version of paraMaker, for thread safety
0036 // 20130924  Add local pointer to G4Pow for convenience
0037 
0038 #ifndef G4NON_EQUILIBRIUM_EVAPORATOR_HH
0039 #define G4NON_EQUILIBRIUM_EVAPORATOR_HH
0040 
0041 #include "G4CascadeDeexciteBase.hh"
0042 #include "G4InuclSpecialFunctions.hh"
0043 
0044 class G4Pow;
0045 
0046 class G4NonEquilibriumEvaporator : public G4CascadeDeexciteBase {
0047 public:
0048   G4NonEquilibriumEvaporator();
0049   virtual ~G4NonEquilibriumEvaporator() {}
0050 
0051   virtual void deExcite(const G4Fragment& target, G4CollisionOutput& output);
0052 
0053 private:
0054   G4InuclSpecialFunctions::paraMaker theParaMaker;
0055   G4Pow* theG4Pow;          // Convenient reference to singleton
0056 
0057   G4double getMatrixElement(G4int A) const;
0058   G4double getE0(G4int A) const; 
0059   G4double getParLev(G4int A, G4int Z) const;
0060 
0061 private:
0062   // Copying of modules is forbidden
0063   G4NonEquilibriumEvaporator(const G4NonEquilibriumEvaporator&);
0064   G4NonEquilibriumEvaporator& operator=(const G4NonEquilibriumEvaporator&);
0065 };
0066 
0067 #endif /* G4NON_EQUILIBRIUM_EVAPORATOR_HH */