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

update processes

Location:
trunk/source/processes/hadronic/models/util/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/hadronic/models/util/include/G4ExcitedString.hh

    r819 r962  
    7171      int operator!=(const G4ExcitedString &right) const;
    7272
     73      G4double GetTimeOfCreation() const;               // Uzhi 15.05.08
     74
     75      void  SetTimeOfCreation(G4double aTime);          // Uzhi 15.05.08
     76
    7377      const G4ThreeVector & GetPosition() const;
    7478
     
    107111
    108112      G4int    theDirection;  // must be 1 or -1 (PROJECTILE or TARGET)
     113      G4double theTimeOfCreation;                   // Uzhi 15.05.08
    109114      G4ThreeVector thePosition;
    110115      G4PartonVector thePartons;  // would like initial capacity for 3 Partons.
     
    123128{
    124129        return this != &right;
     130}
     131
     132inline
     133G4double G4ExcitedString::GetTimeOfCreation() const      // Uzhi 15.05.08
     134{
     135        return theTimeOfCreation;
     136}
     137
     138inline
     139void G4ExcitedString::SetTimeOfCreation(G4double aTime)  // Uzhi 15.05.08
     140{
     141        theTimeOfCreation=aTime;                         // Uzhi 15.05.08
    125142}
    126143
  • trunk/source/processes/hadronic/models/util/include/G4Fancy3DNucleus.hh

    r819 r962  
    8585      void DoTranslation(const G4ThreeVector & theShift);
    8686      const G4VNuclearDensity * GetNuclearDensity() const;
     87      void SortNucleonsInZ();
    8788     
    8889  private:
Note: See TracChangeset for help on using the changeset viewer.