Ignore:
Timestamp:
Nov 5, 2010, 3:45:55 PM (14 years ago)
Author:
garnier
Message:

update ti head

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

Legend:

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

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

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

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

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

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

    r1337 r1340  
    2424// ********************************************************************
    2525//
    26 //
    27 // $Id: G4VIntraNuclearTransportModel.cc,v 1.5 2007/01/11 05:28:56 dennis Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: G4VIntraNuclearTransportModel.cc,v 1.6 2010/08/28 15:53:50 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-03-ref-09 $
    2928//
    3029// $Id: G4VIntraNuclearTransportModel.cc,v 1.0 1998/06/30
     
    3938#include "G4VIntraNuclearTransportModel.hh"
    4039
    41 
    42 // Class G4VIntraNuclearTransportModel
    43 
    44 
    45 G4VIntraNuclearTransportModel::G4VIntraNuclearTransportModel(const G4String& modelName) :
    46   G4HadronicInteraction(modelName),
    47   theTransportModelName(modelName), the3DNucleus(NULL), theDeExcitation(NULL)
     40G4VIntraNuclearTransportModel::G4VIntraNuclearTransportModel(const G4String& modName)
     41  : G4HadronicInteraction(modName),
     42    theTransportModelName(modName), the3DNucleus(0), theDeExcitation(0)
    4843{}
    49 
    50 
    51 G4VIntraNuclearTransportModel::
    52 G4VIntraNuclearTransportModel(const G4VIntraNuclearTransportModel& right) :
    53   G4HadronicInteraction(right.GetModelName() )
    54 {
    55   theTransportModelName = right.GetModelName();
    56   the3DNucleus = right.Get3DNucleus();
    57   theDeExcitation = right.GetDeExcitation();
    58 }
    59 
    6044
    6145G4VIntraNuclearTransportModel::~G4VIntraNuclearTransportModel()
    6246{
    63 //  if(the3DNucleus!=NULL) delete the3DNucleus;
     47  //  if(the3DNucleus!=NULL) delete the3DNucleus;
    6448  // This is deleted by ~G4HadronicInteractionRegistry
    6549  // if(theDeExcitation!=NULL) delete theDeExcitation;
    6650}
    6751
    68 
    69 const G4VIntraNuclearTransportModel&
    70 G4VIntraNuclearTransportModel::
    71 operator=(const G4VIntraNuclearTransportModel& right)
    72 {
    73  if (this != &right)
    74    {
    75      theTransportModelName = right.GetModelName();
    76      the3DNucleus = right.Get3DNucleus();
    77      theDeExcitation = right.GetDeExcitation();
    78    }
    79  return *this;
    80 }
    81 
    82 
    83 int G4VIntraNuclearTransportModel::
    84 operator==(const G4VIntraNuclearTransportModel& right) const
    85 {
    86  return (this == (G4VIntraNuclearTransportModel *) & right);
    87 }
    88 
    89 int G4VIntraNuclearTransportModel::
    90 operator!=(const G4VIntraNuclearTransportModel& right) const
    91 {
    92  return (this != (G4VIntraNuclearTransportModel *) & right);
    93 }
  • trunk/source/processes/hadronic/models/management/src/G4VKineticNucleon.cc

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

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

    r1337 r1340  
    2626//
    2727// $Id: G4VPreCompoundModel.cc,v 1.7 2010/06/11 15:26:36 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     28// GEANT4 tag $Name: geant4-09-03-ref-09 $
    2929//
    3030
Note: See TracChangeset for help on using the changeset viewer.