Ignore:
Timestamp:
Apr 6, 2009, 12:30:29 PM (16 years ago)
Author:
garnier
Message:

update processes

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

Legend:

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

    r819 r962  
    2626//
    2727// $Id: G4EventGenerator.cc,v 1.4 2006/06/29 20:55:37 gunter Exp $
    28 // GEANT4 tag $Name: $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030// G4EventGenerator
  • trunk/source/processes/hadronic/models/parton_string/management/src/G4InteractionContent.cc

    r819 r962  
    2626//
    2727// $Id: G4InteractionContent.cc,v 1.4 2006/06/29 20:55:39 gunter Exp $
    28 // GEANT4 tag $Name: $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030// ------------------------------------------------------------
  • trunk/source/processes/hadronic/models/parton_string/management/src/G4PomeronCrossSection.cc

    r819 r962  
    2626//
    2727// $Id: G4PomeronCrossSection.cc,v 1.6 2006/11/07 12:51:39 gunter Exp $
    28 // GEANT4 tag $Name: $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030
  • trunk/source/processes/hadronic/models/parton_string/management/src/G4StringModel.cc

    r819 r962  
    2626//
    2727// $Id: G4StringModel.cc,v 1.4 2006/06/29 20:55:45 gunter Exp $
    28 // GEANT4 tag $Name: $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030// G4StringModel
  • trunk/source/processes/hadronic/models/parton_string/management/src/G4VParticipants.cc

    r819 r962  
    2626//
    2727// $Id: G4VParticipants.cc,v 1.3 2006/06/29 20:55:47 gunter Exp $
    28 // GEANT4 tag $Name: $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030// ------------------------------------------------------------
  • trunk/source/processes/hadronic/models/parton_string/management/src/G4VPartonStringModel.cc

    r819 r962  
    2626//
    2727// $Id: G4VPartonStringModel.cc,v 1.5 2007/01/24 10:29:30 gunter Exp $
    28 // GEANT4 tag $Name: $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030//// ------------------------------------------------------------
  • trunk/source/processes/hadronic/models/parton_string/management/src/G4VSplitableHadron.cc

    r819 r962  
    2525//
    2626//
    27 // $Id: G4VSplitableHadron.cc,v 1.4 2006/06/29 20:55:51 gunter Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4VSplitableHadron.cc,v 1.5 2008/05/19 13:03:20 vuzhinsk Exp $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030
     
    4242
    4343G4VSplitableHadron::G4VSplitableHadron()
    44       :  theDefinition(NULL), theCollisionCount(0), isSplit(false)
     44      :  theDefinition(NULL), TimeOfCreation(0.), theCollisionCount(0), isSplit(false) // Uzhi 8.05.08
    4545{
    4646}
    4747
    4848G4VSplitableHadron::G4VSplitableHadron(const G4ReactionProduct & aPrimary)
    49       :  theCollisionCount(0), isSplit(false)
     49      :  TimeOfCreation(0.), theCollisionCount(0), isSplit(false)                     // Uzhi 8.05.08
    5050{
    5151        theDefinition=aPrimary.GetDefinition();
     
    5656G4VSplitableHadron::G4VSplitableHadron(const G4Nucleon & aNucleon)
    5757{
    58         theCollisionCount=0;
    59   isSplit = false;
    60         theDefinition=aNucleon.GetParticleType();
    61         the4Momentum=aNucleon.GetMomentum();
    62         thePosition=aNucleon.GetPosition();
     58        TimeOfCreation   = 0.;   // Uzhi 8.05.08
     59        theCollisionCount= 0;
     60        isSplit          = false;
     61        theDefinition    =aNucleon.GetParticleType();
     62        the4Momentum     =aNucleon.GetMomentum();
     63        thePosition      =aNucleon.GetPosition();
    6364}
    6465
    6566G4VSplitableHadron::G4VSplitableHadron(const G4VKineticNucleon * aNucleon)
    6667{
    67         theCollisionCount=0;
    68   isSplit = false;
    69         theDefinition=aNucleon->GetDefinition();
    70         the4Momentum=aNucleon->Get4Momentum();
    71         thePosition=aNucleon->GetPosition();
     68        TimeOfCreation   = 0.;   // Uzhi 8.05.08
     69        theCollisionCount= 0;
     70        isSplit          = false;
     71        theDefinition    =aNucleon->GetDefinition();
     72        the4Momentum     =aNucleon->Get4Momentum();
     73        thePosition      =aNucleon->GetPosition();
    7274}
    7375
    7476G4VSplitableHadron::G4VSplitableHadron(const G4VSplitableHadron &right)
    7577{
    76         theCollisionCount=0;
    77   isSplit = false;
    78         theDefinition= right.GetDefinition();
    79         the4Momentum= right.Get4Momentum();
    80         thePosition=  right.GetPosition();
     78        TimeOfCreation   = 0.;   // Uzhi 8.05.08
     79        theCollisionCount= 0;
     80        isSplit          = false;
     81        theDefinition    = right.GetDefinition();
     82        the4Momentum     = right.Get4Momentum();
     83        thePosition      =  right.GetPosition();
    8184}
    8285
  • trunk/source/processes/hadronic/models/parton_string/management/src/G4VStringFragmentation.cc

    r819 r962  
    2626//
    2727// $Id: G4VStringFragmentation.cc,v 1.4 2006/06/29 20:55:53 gunter Exp $
    28 // GEANT4 tag $Name: $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030// G4VStringFragmentation
Note: See TracChangeset for help on using the changeset viewer.