- Timestamp:
- Nov 25, 2009, 5:13:58 PM (16 years ago)
- Location:
- trunk/source/processes/hadronic/models/parton_string/management/include
- Files:
-
- 10 edited
-
G4EventGenerator.hh (modified) (1 diff)
-
G4InteractionCode.hh (modified) (1 diff)
-
G4InteractionContent.hh (modified) (5 diffs)
-
G4PomeronCrossSection.hh (modified) (1 diff)
-
G4StringModel.hh (modified) (1 diff)
-
G4VParticipants.hh (modified) (3 diffs)
-
G4VPartonStringModel.hh (modified) (1 diff)
-
G4VSplitableHadron.hh (modified) (4 diffs)
-
G4VStringFragmentation.hh (modified) (1 diff)
-
G4VertexCode.hh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/processes/hadronic/models/parton_string/management/include/G4EventGenerator.hh
r1007 r1196 26 26 // 27 27 // $Id: G4EventGenerator.hh,v 1.3 2006/06/29 20:55:13 gunter Exp $ 28 // GEANT4 tag $Name: geant4-09-0 2$28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 #ifndef G4EventGenerator_h -
trunk/source/processes/hadronic/models/parton_string/management/include/G4InteractionCode.hh
r1007 r1196 26 26 // 27 27 // $Id: G4InteractionCode.hh,v 1.3 2006/06/29 20:55:15 gunter Exp $ 28 // GEANT4 tag $Name: geant4-09-0 2$28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 #ifndef G4InteractionCode_h -
trunk/source/processes/hadronic/models/parton_string/management/include/G4InteractionContent.hh
r1007 r1196 25 25 // 26 26 // 27 // $Id: G4InteractionContent.hh,v 1. 4 2007/01/24 10:28:54 gunterExp $28 // GEANT4 tag $Name: geant4-09-0 2$27 // $Id: G4InteractionContent.hh,v 1.5 2009/07/17 12:36:41 vuzhinsk Exp $ 28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 … … 43 43 44 44 #include "G4VSplitableHadron.hh" 45 45 #include "G4Nucleon.hh" // Uzhi 16.07.09 46 46 class G4InteractionContent 47 47 { … … 58 58 G4VSplitableHadron * GetProjectile() const ; 59 59 G4VSplitableHadron * GetTarget() const; 60 61 void SetTargetNucleon(G4Nucleon * aNucleon); // Uzhi 16.07.09 62 G4Nucleon * GetTargetNucleon() const; // Uzhi 16.07.09 60 63 61 64 void SetTarget(G4VSplitableHadron *aTarget); … … 86 89 G4VSplitableHadron * theTarget; 87 90 G4VSplitableHadron * theProjectile; 91 G4Nucleon * theTargetNucleon; 88 92 89 93 G4int theNumberOfHard; … … 107 111 { 108 112 theTarget = aTarget; 113 } 114 115 inline void G4InteractionContent::SetTargetNucleon(G4Nucleon * aNucleon) // Uzhi 16.07.09 116 { 117 theTargetNucleon = aNucleon; 118 } 119 120 inline G4Nucleon * G4InteractionContent::GetTargetNucleon() const // Uzhi 16.07.09 121 { 122 return theTargetNucleon; 109 123 } 110 124 -
trunk/source/processes/hadronic/models/parton_string/management/include/G4PomeronCrossSection.hh
r1007 r1196 28 28 // 29 29 // $Id: G4PomeronCrossSection.hh,v 1.3 2006/06/29 20:55:19 gunter Exp $ 30 // GEANT4 tag $Name: geant4-09-0 2$30 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 31 31 // 32 32 #include "G4Proton.hh" -
trunk/source/processes/hadronic/models/parton_string/management/include/G4StringModel.hh
r1007 r1196 26 26 // 27 27 // $Id: G4StringModel.hh,v 1.3 2006/06/29 20:55:23 gunter Exp $ 28 // GEANT4 tag $Name: geant4-09-0 2$28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 #ifndef G4StringModel_h -
trunk/source/processes/hadronic/models/parton_string/management/include/G4VParticipants.hh
r1007 r1196 25 25 // 26 26 // 27 // $Id: G4VParticipants.hh,v 1. 4 2008/05/19 13:03:20 vuzhinskExp $28 // GEANT4 tag $Name: geant4-09-0 2$27 // $Id: G4VParticipants.hh,v 1.6 2009/11/19 14:23:09 gunter Exp $ 28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 … … 65 65 66 66 67 protected: 67 // protected: // Uzhi 26 July 09 68 68 69 69 … … 90 90 if ( theNucleus == NULL ) theNucleus = new G4Fancy3DNucleus(); 91 91 theNucleus->Init(theA, theZ); 92 theNucleus->SortNucleonsIn Z(); // Uzhi 16.05.08 Sorting of nucleon-Z92 theNucleus->SortNucleonsIncZ(); 93 93 } 94 94 -
trunk/source/processes/hadronic/models/parton_string/management/include/G4VPartonStringModel.hh
r1007 r1196 26 26 // 27 27 // $Id: G4VPartonStringModel.hh,v 1.3 2006/06/29 20:55:27 gunter Exp $ 28 // GEANT4 tag $Name: geant4-09-0 2$28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 #ifndef G4VPartonStringModel_h -
trunk/source/processes/hadronic/models/parton_string/management/include/G4VSplitableHadron.hh
r1007 r1196 25 25 // 26 26 // 27 // $Id: G4VSplitableHadron.hh,v 1. 4 2008/05/19 13:03:20vuzhinsk Exp $28 // GEANT4 tag $Name: geant4-09-0 2$27 // $Id: G4VSplitableHadron.hh,v 1.6 2009/07/17 12:36:41 vuzhinsk Exp $ 28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 … … 81 81 const G4ThreeVector & GetPosition() const; 82 82 83 void SetStatus(const G4int aStatus); // Uzhi 17.07.09 84 G4int GetStatus(); // Uzhi 17.07.09 85 83 86 virtual void SplitUp() = 0; 84 87 virtual G4Parton * GetNextParton() = 0 ; … … 106 109 G4int theCollisionCount; 107 110 111 G4int Status; // Uzhi 17.07.09 108 112 G4bool isSplit; 109 113 … … 165 169 } 166 170 171 inline void G4VSplitableHadron::SetStatus(G4int aStatus) // Uzhi 17.07.09 172 { 173 Status=aStatus; 174 } 175 176 inline G4int G4VSplitableHadron::GetStatus() // Uzhi 17.07.09 177 { 178 return Status; 179 } 167 180 168 181 -
trunk/source/processes/hadronic/models/parton_string/management/include/G4VStringFragmentation.hh
r1007 r1196 26 26 // 27 27 // $Id: G4VStringFragmentation.hh,v 1.3 2006/06/29 20:55:31 gunter Exp $ 28 // GEANT4 tag $Name: geant4-09-0 2$28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 #ifndef G4VStringFragmentation_h -
trunk/source/processes/hadronic/models/parton_string/management/include/G4VertexCode.hh
r1007 r1196 26 26 // 27 27 // $Id: G4VertexCode.hh,v 1.3 2006/06/29 20:55:33 gunter Exp $ 28 // GEANT4 tag $Name: geant4-09-0 2$28 // GEANT4 tag $Name: geant4-09-03-cand-01 $ 29 29 // 30 30 #ifndef G4VertexCode_h
Note:
See TracChangeset
for help on using the changeset viewer.
