Ignore:
Timestamp:
Sep 30, 2010, 2:47:17 PM (15 years ago)
Author:
garnier
Message:

tag geant4.9.4 beta 1 + modifs locales

Location:
trunk/source/processes/hadronic/models/management/src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/hadronic/models/management/src/G4HadronicInteraction.cc

    r1315 r1337  
    2525//
    2626// $Id: G4HadronicInteraction.cc,v 1.7 2010/04/03 00:40:57 dennis Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2828//
    2929// Hadronic Interaction  base class
  • trunk/source/processes/hadronic/models/management/src/G4HadronicInteractionRegistry.cc

    r1315 r1337  
    2525//
    2626// $Id: G4HadronicInteractionRegistry.cc,v 1.10 2010/03/25 15:31:42 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2828//
    2929// 23-Jan-2009 V.Ivanchenko make the class to be a singleton
  • trunk/source/processes/hadronic/models/management/src/G4InelasticInteraction.cc

    r1228 r1337  
    2525//
    2626// $Id: G4InelasticInteraction.cc,v 1.12 2009/01/24 11:56:27 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03 $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2828//
    2929// Hadronic Process: Inelastic Interaction
  • trunk/source/processes/hadronic/models/management/src/G4V3DNucleus.cc

    r1228 r1337  
    2626//
    2727// $Id: G4V3DNucleus.cc,v 1.5 2006/06/29 20:45:59 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030#include "G4V3DNucleus.hh"
  • trunk/source/processes/hadronic/models/management/src/G4VHighEnergyGenerator.cc

    r1228 r1337  
    2626//
    2727// $Id: G4VHighEnergyGenerator.cc,v 1.5 2006/06/29 20:46:03 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030// G4VHighEnergyGenerator
  • trunk/source/processes/hadronic/models/management/src/G4VIntraNuclearTransportModel.cc

    r1228 r1337  
    2626//
    2727// $Id: G4VIntraNuclearTransportModel.cc,v 1.5 2007/01/11 05:28:56 dennis Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030// $Id: G4VIntraNuclearTransportModel.cc,v 1.0 1998/06/30
  • trunk/source/processes/hadronic/models/management/src/G4VKineticNucleon.cc

    r1228 r1337  
    2626//
    2727// $Id: G4VKineticNucleon.cc,v 1.3 2006/06/29 20:46:07 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030#include "G4VKineticNucleon.hh"
  • trunk/source/processes/hadronic/models/management/src/G4VNuclearDensity.cc

    r1228 r1337  
    2626//
    2727// $Id: G4VNuclearDensity.cc,v 1.3 2006/06/29 20:46:09 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030
  • trunk/source/processes/hadronic/models/management/src/G4VPreCompoundModel.cc

    r1228 r1337  
    2525//
    2626//
    27 // $Id: G4VPreCompoundModel.cc,v 1.6 2007/01/11 05:29:10 dennis Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     27// $Id: G4VPreCompoundModel.cc,v 1.7 2010/06/11 15:26:36 vnivanch Exp $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030
    3131#include "G4VPreCompoundModel.hh"
    32 #include "G4HadronicException.hh"
     32//#include "G4HadronicException.hh"
    3333
    3434G4VPreCompoundModel::G4VPreCompoundModel(G4ExcitationHandler* const value,
    3535                                         const G4String& modelName):
    36   G4HadronicInteraction(modelName),
    37   theExcitationHandler(value)
     36  G4HadronicInteraction(modelName), theExcitationHandler(value)
    3837{}
    3938
     39G4VPreCompoundModel::G4VPreCompoundModel():
     40  G4HadronicInteraction(""), theExcitationHandler(0)
     41{}
    4042
    41 const G4VPreCompoundModel &
    42 G4VPreCompoundModel::operator=(const G4VPreCompoundModel &)
    43 {
    44   G4String text = "G4VPreCompoundModel::operator= meant to not be accessable";
    45   throw G4HadronicException(__FILE__, __LINE__, text);
    46   return *this;
    47 }
    48 
    49 G4bool G4VPreCompoundModel::operator==(const G4VPreCompoundModel &) const
    50 {
    51   return false;
    52 }
    53 
    54 G4bool G4VPreCompoundModel::operator!=(const G4VPreCompoundModel &) const
    55 {
    56   return true;
    57 }
     43G4VPreCompoundModel::~G4VPreCompoundModel()
     44{}
     45 
Note: See TracChangeset for help on using the changeset viewer.