Ignore:
Timestamp:
Feb 16, 2009, 10:14:30 AM (16 years ago)
Author:
garnier
Message:

en test de gl2ps. Problemes de libraries

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/physics_lists/builders/include/G4NeutronTrackingCut.hh

    r850 r921  
    2424// ********************************************************************
    2525//
    26 // $Id: G4NeutronTrackingCut.hh,v 1.1 2006/11/20 17:56:08 gunter Exp $
    27 // GEANT4 tag $Name: HEAD $
     26// $Id: G4NeutronTrackingCut.hh,v 1.2 2008/09/17 18:19:15 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-02-cand-01 $
    2828//
    2929//---------------------------------------------------------------------------
     
    5151    virtual ~G4NeutronTrackingCut();
    5252
    53   public:
    5453    // This method will be invoked in the Construct() method.
    5554    // each particle type will be instantiated
     
    6160  virtual void ConstructProcess();
    6261
     62  inline void SetTimeLimit(G4double);
     63  inline void SetKineticEnergyLimit(G4double);
     64
    6365private:
     66
    6467  G4NeutronKiller* pNeutronKiller;
     68
     69  G4double timeLimit;
     70  G4double kineticEnergyLimit;
     71 
    6572  G4int    verbose;
    6673  G4bool   wasActivated;
    6774};
     75
     76inline void G4NeutronTrackingCut::SetTimeLimit(G4double val)
     77{
     78  timeLimit = val;
     79}
     80
     81inline void G4NeutronTrackingCut::SetKineticEnergyLimit(G4double val)
     82{
     83  kineticEnergyLimit = val;
     84}
    6885
    6986#endif
Note: See TracChangeset for help on using the changeset viewer.