// // ******************************************************************** // * DISCLAIMER * // * * // * The following disclaimer summarizes all the specific disclaimers * // * of contributors to this software. The specific disclaimers,which * // * govern, are listed with their locations in: * // * http://cern.ch/geant4/license * // * * // * 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. * // * * // * This code implementation is the intellectual property of the * // * GEANT4 collaboration. * // * By copying, distributing or modifying the Program (or any work * // * based on the Program) you indicate your acceptance of this * // * statement, and all its terms. * // ******************************************************************** // // // $Id: G4EnergyRangeManager.hh,v 1.6 2003/07/01 15:05:32 hpw Exp $ // GEANT4 tag $Name: geant4-06-00 $ // // Hadronic Process: Energy Range Manager // original by H.P. Wellisch // modified by J.L. Chuma, TRIUMF, 22-Nov-1996 // Last modified: 24-Mar-1997 #ifndef G4EnergyRangeManager_h #define G4EnergyRangeManager_h 1 #include "G4HadronicInteraction.hh" class G4EnergyRangeManager { public: G4EnergyRangeManager() { theHadronicInteractionCounter = 0; } ~G4EnergyRangeManager() { } G4EnergyRangeManager( const G4EnergyRangeManager &right ); G4EnergyRangeManager & operator=( const G4EnergyRangeManager &right ); public: inline G4bool operator==( const G4EnergyRangeManager &right ) const { return ( this == (G4EnergyRangeManager *) &right ); } inline G4bool operator!=( const G4EnergyRangeManager &right ) const { return ( this != (G4EnergyRangeManager *) &right ); } void RegisterMe( G4HadronicInteraction *a ); G4HadronicInteraction *GetHadronicInteraction( const G4double kineticEnergy, const G4Material *aMaterial, const G4Element *anElement ) const; private: inline G4int GetHadronicInteractionCounter() const { return theHadronicInteractionCounter; } private: enum { MAX_NUMBER_OF_MODELS = 100 }; G4HadronicInteraction * theHadronicInteraction[ MAX_NUMBER_OF_MODELS ]; G4int theHadronicInteractionCounter; }; #endif