Changeset 1228 for trunk/source/tracking


Ignore:
Timestamp:
Jan 8, 2010, 11:56:51 AM (14 years ago)
Author:
garnier
Message:

update geant4.9.3 tag

Location:
trunk/source/tracking
Files:
36 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/tracking/History

    r1011 r1228  
    1 $Id: History,v 1.126 2008/12/09 01:37:25 asaim Exp $
    2 $Name: geant4-09-02-ref-02 $
     1$Id: History,v 1.137 2009/11/24 10:04:14 perl Exp $
     2$Name: geant4-09-03 $
    33-------------------------------------------------------------------
    44
     
    1818     * Reverse chronological order (last date on top), please *
    1919     ----------------------------------------------------------
     20
     2124 Nov 2009 Joseph Perl (tracking-V09-02-07)
     22- G4RichTrajectory: add additional attributes
     23- G4RichTrajectoryPoint: add additional attributes
     24
     2520 Nov 2009 L.Desorgher (tracking-V09-02-06)
     26- Small correction in G4AdjointSteppingAction to stop the reverse tracking
     27  when adjoint particles reenter the adjoint source.
     28  Reput the Nan test removed in  tracking-V09-02-05 but now as (x<0 && x>=0).
     29  This Nan test is still needed in very rare case where the weight of a
     30  particle goes to Nan. As such the code is stable! The reason for the Nan
     31  weight is till under investigation.
     32
     3318 Nov 2009 G.Cosmo (tracking-V09-02-05)
     34- Fixes to "Adjoint" classes to allow build of DLLs on Windows: renamed all
     35  methods and data holding "External" as keyword to "Ext".
     36  Cleanup of the code: use "const G4String&" instead of "G4String" wherever
     37  possible; use G4 types in consistent way; avoid usage of "isNan"; code
     38  formatting cleanup; added Geant4 disclaimer.
     39
     4012 Nov 2009 J.Allison (tracking-V09-02-04)
     41- G4Trajectory, G4SmoothTrajectory, G4RichTrajectory:
     42  o Added initial kinetic energy.
     43- G4RichTrajectory:
     44  o Added final kinetic energy.
     45- G4RichTrajectoryPoint:
     46  o Added "remaining energy" at each step.
     47
     4810 Nov 2009 L. Desorgher(tracking-V09-02-03)
     49- First commit of Adjoint classes in the tracking category
     50  New classes are: - G4AdjointCrossSurfChecker and G4AdjointSteppingAction
     51
     5224 Sep 2009 P.Gumplinger (tracking-V09-02-02)
     53- Correction to G4SteppingManager::InvokeAtRestDoItProcs so G4Scintillation
     54  process (with an AtRestDoIt and 'Forced') will not be set to 'NotForced' when
     55  NofInactiveProc<MAXofAtRestLoops and when the user inactivated it on the fly.
     56
     5721 Sep 2009 T.Sasaki (tracking-V09-02-01)
     58- Takashi's first iteration of the above
     59
     6027 Feb 2009 T.Sasaki(tracking-V09-02-00)
     61- Fixing the problem in the the special cases of skipping voxel boundaries in
     62G4RegularNavigation
    2063
    216408 Doc 2008  M.Asai (tracking-V09-01-04)
  • trunk/source/tracking/include/G4AdjointCrossSurfChecker.hh

    r1197 r1228  
    2525//
    2626// $Id: G4AdjointCrossSurfChecker.hh,v 1.2 2009/11/18 18:04:11 gcosmo Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929/////////////////////////////////////////////////////////////////////////////////
  • trunk/source/tracking/include/G4AdjointSteppingAction.hh

    r1197 r1228  
    2525//
    2626// $Id: G4AdjointSteppingAction.hh,v 1.3 2009/11/20 14:24:34 ldesorgh Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929/////////////////////////////////////////////////////////////////////////////////
  • trunk/source/tracking/include/G4RichTrajectory.hh

    r1196 r1228  
    2525//
    2626//
    27 // $Id: G4RichTrajectory.hh,v 1.5 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// $Id: G4RichTrajectory.hh,v 1.6 2009/11/24 10:04:14 perl Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
     
    4242//     4) physical volume and next physical volume;
    4343//     5) creator process;
     44//   ...and much more.
    4445//
    4546// Contact:
     
    5859
    5960#include "G4Trajectory.hh"
     61
     62#include "G4TouchableHandle.hh"
    6063
    6164typedef std::vector<G4VTrajectoryPoint*>  RichTrajectoryPointsContainer;
     
    9295  // Extended information (only publicly accessible through AttValues)...
    9396  RichTrajectoryPointsContainer* fpRichPointsContainer;
    94   G4VPhysicalVolume* fpInitialVolume;
    95   G4VPhysicalVolume* fpInitialNextVolume;
    96   const G4VProcess*  fpCreatorProcess;
    97   G4double           fFinalKineticEnergy;
     97  G4TouchableHandle fpInitialVolume;
     98  G4TouchableHandle fpInitialNextVolume;
     99  const G4VProcess* fpCreatorProcess;
     100  G4TouchableHandle fpFinalVolume;
     101  G4TouchableHandle fpFinalNextVolume;
     102  const G4VProcess* fpEndingProcess;
     103  G4double          fFinalKineticEnergy;
    98104
    99105};
  • trunk/source/tracking/include/G4RichTrajectoryPoint.hh

    r1196 r1228  
    2525//
    2626//
    27 // $Id: G4RichTrajectoryPoint.hh,v 1.6 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// $Id: G4RichTrajectoryPoint.hh,v 1.7 2009/11/24 10:04:14 perl Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
     
    4040//     2) Auxiliary points, as in G4SmoothTrajectory.
    4141//     3) Total energy deposit.
    42 //     4) Procees defining end of step.
    43 //     5) Global time (from start of event) at pre- amd post-step.
     42//     4) Remaining energy.
     43//     5) Process defining end of step.
     44//     6) Global time (from start of event) at pre- amd post-step.
     45//   ...and more.
    4446//
    4547// Contact:
     
    5961#include "G4TrajectoryPoint.hh"
    6062
     63#include "G4TouchableHandle.hh"
    6164#include "G4ThreeVector.hh"
    6265#include <vector>
     
    101104  G4double fPreStepPointGlobalTime;
    102105  G4double fPostStepPointGlobalTime;
     106  G4TouchableHandle fpPreStepPointVolume;
     107  G4TouchableHandle fpPostStepPointVolume;
    103108};
    104109
  • trunk/source/tracking/include/G4SmoothTrajectory.hh

    r1196 r1228  
    2626//
    2727// $Id: G4SmoothTrajectory.hh,v 1.12 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4SmoothTrajectoryPoint.hh

    r1196 r1228  
    2626//
    2727// $Id: G4SmoothTrajectoryPoint.hh,v 1.13 2006/06/29 21:15:29 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4SteppingManager.hh

    r1196 r1228  
    2626//
    2727// $Id: G4SteppingManager.hh,v 1.31 2007/10/09 03:51:06 tsasaki Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4SteppingVerbose.hh

    r1196 r1228  
    2626//
    2727// $Id: G4SteppingVerbose.hh,v 1.12 2006/06/29 21:15:33 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4TrackingManager.hh

    r1196 r1228  
    2626//
    2727// $Id: G4TrackingManager.hh,v 1.21 2006/11/14 10:58:47 tsasaki Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4TrackingMessenger.hh

    r1196 r1228  
    2626//
    2727// $Id: G4TrackingMessenger.hh,v 1.10 2006/06/29 21:15:39 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4Trajectory.hh

    r1196 r1228  
    2626//
    2727// $Id: G4Trajectory.hh,v 1.25 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4TrajectoryPoint.hh

    r1196 r1228  
    2626//
    2727// $Id: G4TrajectoryPoint.hh,v 1.17 2006/06/29 21:15:43 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4UserSteppingAction.hh

    r1196 r1228  
    2626//
    2727// $Id: G4UserSteppingAction.hh,v 1.12 2006/06/29 21:15:45 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4UserTrackingAction.hh

    r1196 r1228  
    2626//
    2727// $Id: G4UserTrackingAction.hh,v 1.11 2006/06/29 21:15:47 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
  • trunk/source/tracking/include/G4VSteppingVerbose.hh

    r1196 r1228  
    2626//
    2727// $Id: G4VSteppingVerbose.hh,v 1.24 2006/11/14 10:58:47 tsasaki Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4VTrajectory.hh

    r1196 r1228  
    2626//
    2727// $Id: G4VTrajectory.hh,v 1.17 2006/06/29 21:15:51 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/include/G4VTrajectoryPoint.hh

    r1196 r1228  
    2626//
    2727// $Id: G4VTrajectoryPoint.hh,v 1.15 2006/06/29 21:15:53 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/src/G4AdjointCrossSurfChecker.cc

    r1197 r1228  
    2525//
    2626// $Id: G4AdjointCrossSurfChecker.cc,v 1.2 2009/11/18 18:04:11 gcosmo Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929/////////////////////////////////////////////////////////////////////////////
  • trunk/source/tracking/src/G4AdjointSteppingAction.cc

    r1197 r1228  
    2525//
    2626// $Id: G4AdjointSteppingAction.cc,v 1.3 2009/11/20 14:24:34 ldesorgh Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929/////////////////////////////////////////////////////////////////////////////
  • trunk/source/tracking/src/G4RichTrajectory.cc

    r1196 r1228  
    2525//
    2626//
    27 // $Id: G4RichTrajectory.cc,v 1.7 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// $Id: G4RichTrajectory.cc,v 1.8 2009/11/24 10:04:14 perl Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// ---------------------------------------------------------------
     
    5757#endif
    5858
     59#include <sstream>
     60
    5961G4Allocator<G4RichTrajectory> aRichTrajectoryAllocator;
    6062
    6163G4RichTrajectory::G4RichTrajectory():
    6264  fpRichPointsContainer(0),
    63   fpInitialVolume(0),
    64   fpInitialNextVolume(0),
    6565  fpCreatorProcess(0),
     66  fpEndingProcess(0),
    6667  fFinalKineticEnergy(0.)
    6768{}
     
    7778                        // RichTrajectoryPointsContainer
    7879{
    79   fpInitialVolume = aTrack->GetVolume();
    80   fpInitialNextVolume = aTrack->GetNextVolume();
     80  fpInitialVolume = aTrack->GetTouchableHandle();
     81  fpInitialNextVolume = aTrack->GetNextTouchableHandle();
    8182  fpCreatorProcess = aTrack->GetCreatorProcess();
     83  // On construction, set final values to initial values.
     84  // Final values are updated at the addition of every step - see AppendStep.
     85  fpFinalVolume = aTrack->GetTouchableHandle();
     86  fpFinalNextVolume = aTrack->GetNextTouchableHandle();
     87  fpEndingProcess = aTrack->GetCreatorProcess();
     88  fFinalKineticEnergy = aTrack->GetKineticEnergy();
     89  // Insert the first rich trajectory point (see note above)...
    8290  fpRichPointsContainer = new RichTrajectoryPointsContainer;
    83   // Insert the first rich trajectory point (see note above)...
    8491  fpRichPointsContainer->push_back(new G4RichTrajectoryPoint(aTrack));
    85   // On construction, set final KE to initial KE.
    86   // Final KE is updated at the addition of every step - see AppendStep.
    87   fFinalKineticEnergy = aTrack->GetKineticEnergy();
    8892}
    8993
     
    9498  fpInitialNextVolume = right.fpInitialNextVolume;
    9599  fpCreatorProcess = right.fpCreatorProcess;
     100  fpFinalVolume = right.fpFinalVolume;
     101  fpFinalNextVolume = right.fpFinalNextVolume;
     102  fpEndingProcess = right.fpEndingProcess;
     103  fFinalKineticEnergy = right.fFinalKineticEnergy;
    96104  fpRichPointsContainer = new RichTrajectoryPointsContainer;
    97   fFinalKineticEnergy = right.fFinalKineticEnergy;
    98105  for(size_t i=0;i<right.fpRichPointsContainer->size();i++)
    99106  {
     
    121128  fpRichPointsContainer->push_back(new G4RichTrajectoryPoint(aStep));
    122129  // Except for first step, which is a sort of virtual step to start
    123   // the track, compute the final energy.
    124   if (aStep->GetTrack()->GetCurrentStepNumber() > 0) {
     130  // the track, compute the final values...
     131  const G4Track* track = aStep->GetTrack();
     132  const G4StepPoint* postStepPoint = aStep->GetPostStepPoint();
     133  if (track->GetCurrentStepNumber() > 0) {
     134    fpFinalVolume = track->GetTouchableHandle();
     135    fpFinalNextVolume = track->GetNextTouchableHandle();
     136    fpEndingProcess = postStepPoint->GetProcessDefinedStep();
    125137    fFinalKineticEnergy =
    126138      aStep->GetPreStepPoint()->GetKineticEnergy() -
     
    158170    G4String ID;
    159171
    160     ID = "IVN";
    161     (*store)[ID] = G4AttDef(ID,"Initial Volume Name",
    162                             "Physics","","G4String");
    163 
    164     ID = "INVN";
    165     (*store)[ID] = G4AttDef(ID,"Initial Next Volume Name",
     172    ID = "IVPath";
     173    (*store)[ID] = G4AttDef(ID,"Initial Volume Path",
     174                            "Physics","","G4String");
     175
     176    ID = "INVPath";
     177    (*store)[ID] = G4AttDef(ID,"Initial Next Volume Path",
    166178                            "Physics","","G4String");
    167179
     
    172184    ID = "CPTN";
    173185    (*store)[ID] = G4AttDef(ID,"Creator Process Type Name",
     186                            "Physics","","G4String");
     187
     188    ID = "FVPath";
     189    (*store)[ID] = G4AttDef(ID,"Final Volume Path",
     190                            "Physics","","G4String");
     191
     192    ID = "FNVPath";
     193    (*store)[ID] = G4AttDef(ID,"Final Next Volume Path",
     194                            "Physics","","G4String");
     195
     196    ID = "EPN";
     197    (*store)[ID] = G4AttDef(ID,"Ending Process Name",
     198                            "Physics","","G4String");
     199
     200    ID = "EPTN";
     201    (*store)[ID] = G4AttDef(ID,"Ending Process Type Name",
    174202                            "Physics","","G4String");
    175203
     
    183211}
    184212
     213static G4String Path(const G4TouchableHandle& th)
     214{
     215  std::ostringstream oss;
     216  G4int depth = th->GetHistoryDepth();
     217  for (G4int i = depth; i >= 0; --i) {
     218    oss << th->GetVolume(i)->GetName()
     219        << ':' << th->GetCopyNumber(i);
     220    if (i != 0) oss << '/';
     221  }
     222  return oss.str();
     223}
     224
    185225std::vector<G4AttValue>* G4RichTrajectory::CreateAttValues() const
    186226{
     
    188228  std::vector<G4AttValue>* values = G4Trajectory::CreateAttValues();
    189229
    190   values->push_back(G4AttValue("IVN",fpInitialVolume->GetName(),""));
    191 
    192   values->push_back(G4AttValue("INVN",fpInitialNextVolume->GetName(),""));
     230  if (fpInitialVolume && fpInitialVolume->GetVolume()) {
     231    values->push_back(G4AttValue("IVPath",Path(fpInitialVolume),""));
     232  } else {
     233    values->push_back(G4AttValue("IVPath","None",""));
     234  }
     235
     236  if (fpInitialNextVolume && fpInitialNextVolume->GetVolume()) {
     237    values->push_back(G4AttValue("INVPath",Path(fpInitialNextVolume),""));
     238  } else {
     239    values->push_back(G4AttValue("INVPath","None",""));
     240  }
    193241
    194242  if (fpCreatorProcess) {
     
    201249  }
    202250
     251  if (fpFinalVolume && fpFinalVolume->GetVolume()) {
     252    values->push_back(G4AttValue("FVPath",Path(fpFinalVolume),""));
     253  } else {
     254    values->push_back(G4AttValue("FVPath","None",""));
     255  }
     256
     257  if (fpFinalNextVolume && fpFinalNextVolume->GetVolume()) {
     258    values->push_back(G4AttValue("FNVPath",Path(fpFinalNextVolume),""));
     259  } else {
     260    values->push_back(G4AttValue("FNVPath","None",""));
     261  }
     262
     263  if (fpEndingProcess) {
     264    values->push_back(G4AttValue("EPN",fpEndingProcess->GetProcessName(),""));
     265    G4ProcessType type = fpEndingProcess->GetProcessType();
     266    values->push_back(G4AttValue("EPTN",G4VProcess::GetProcessTypeName(type),""));
     267  } else {
     268    values->push_back(G4AttValue("EPN","User Defined",""));
     269    values->push_back(G4AttValue("EPTN","User",""));
     270  }
     271
    203272  values->push_back
    204273    (G4AttValue("FKE",G4BestUnit(fFinalKineticEnergy,"Energy"),""));
  • trunk/source/tracking/src/G4RichTrajectoryPoint.cc

    r1196 r1228  
    2525//
    2626//
    27 // $Id: G4RichTrajectoryPoint.cc,v 1.4 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// $Id: G4RichTrajectoryPoint.cc,v 1.5 2009/11/24 10:04:14 perl Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
     
    6161#endif
    6262
     63#include <sstream>
     64
    6365G4Allocator<G4RichTrajectoryPoint> aRichTrajectoryPointAllocator;
    6466
     
    7981  fpProcess(0),
    8082  fPreStepPointGlobalTime(aTrack->GetGlobalTime()),
    81   fPostStepPointGlobalTime(aTrack->GetGlobalTime())
     83  fPostStepPointGlobalTime(aTrack->GetGlobalTime()),
     84  fpPreStepPointVolume(aTrack->GetTouchableHandle()),
     85  fpPostStepPointVolume(aTrack->GetNextTouchableHandle())
    8286{}
    8387
     
    97101  fPreStepPointGlobalTime = preStepPoint->GetGlobalTime();
    98102  fPostStepPointGlobalTime = postStepPoint->GetGlobalTime();
     103  fpPreStepPointVolume = preStepPoint->GetTouchableHandle();
     104  fpPostStepPointVolume = postStepPoint->GetTouchableHandle();
    99105
    100106  /*
     
    183189    (*store)[ID] = G4AttDef(ID,"Post-step-point global time",
    184190                            "Physics","G4BestUnit","G4double");
     191    ID = "PreVPath";
     192    (*store)[ID] = G4AttDef(ID,"Pre-step Volume Path",
     193                            "Physics","","G4String");
     194    ID = "PostVPath";
     195    (*store)[ID] = G4AttDef(ID,"Post-step Volume Path",
     196                            "Physics","","G4String");
    185197  }
    186198  return store;
     199}
     200
     201static G4String Path(const G4TouchableHandle& th)
     202{
     203  std::ostringstream oss;
     204  G4int depth = th->GetHistoryDepth();
     205  for (G4int i = depth; i >= 0; --i) {
     206    oss << th->GetVolume(i)->GetName()
     207        << ':' << th->GetCopyNumber(i);
     208    if (i != 0) oss << '/';
     209  }
     210  return oss.str();
    187211}
    188212
     
    223247    (G4AttValue("PostT",G4BestUnit(fPostStepPointGlobalTime,"Time"),""));
    224248
     249  if (fpPreStepPointVolume && fpPreStepPointVolume->GetVolume()) {
     250    values->push_back(G4AttValue("PreVPath",Path(fpPreStepPointVolume),""));
     251  } else {
     252    values->push_back(G4AttValue("PreVPath","None",""));
     253  }
     254
     255  if (fpPostStepPointVolume && fpPostStepPointVolume->GetVolume()) {
     256    values->push_back(G4AttValue("PostVPath",Path(fpPostStepPointVolume),""));
     257  } else {
     258    values->push_back(G4AttValue("PostVPath","None",""));
     259  }
     260
    225261#ifdef G4ATTDEBUG
    226262  G4cout << G4AttCheck(values,GetAttDefs());
  • trunk/source/tracking/src/G4SmoothTrajectory.cc

    r1196 r1228  
    2626//
    2727// $Id: G4SmoothTrajectory.cc,v 1.19 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
  • trunk/source/tracking/src/G4SmoothTrajectoryPoint.cc

    r1196 r1228  
    2626//
    2727// $Id: G4SmoothTrajectoryPoint.cc,v 1.15 2006/06/29 21:16:01 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
  • trunk/source/tracking/src/G4SteppingManager.cc

    r1196 r1228  
    2626//
    2727// $Id: G4SteppingManager.cc,v 1.50 2009/02/27 08:09:50 tsasaki Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/src/G4SteppingManager2.cc

    r1196 r1228  
    2626//
    2727// $Id: G4SteppingManager2.cc,v 1.37 2009/09/25 00:23:41 gum Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/src/G4SteppingVerbose.cc

    r1196 r1228  
    2626//
    2727// $Id: G4SteppingVerbose.cc,v 1.23 2006/07/14 14:13:57 tsasaki Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/src/G4TrackingManager.cc

    r1196 r1228  
    2626//
    2727// $Id: G4TrackingManager.cc,v 1.22 2006/11/14 10:58:47 tsasaki Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/src/G4TrackingMessenger.cc

    r1196 r1228  
    2626//
    2727// $Id: G4TrackingMessenger.cc,v 1.15 2006/11/03 11:13:38 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/src/G4Trajectory.cc

    r1196 r1228  
    2626//
    2727// $Id: G4Trajectory.cc,v 1.33 2009/11/12 09:09:56 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// ---------------------------------------------------------------
  • trunk/source/tracking/src/G4TrajectoryPoint.cc

    r1196 r1228  
    2626//
    2727// $Id: G4TrajectoryPoint.cc,v 1.19 2006/06/29 21:16:15 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// ---------------------------------------------------------------
  • trunk/source/tracking/src/G4UserSteppingAction.cc

    r1196 r1228  
    2626//
    2727// $Id: G4UserSteppingAction.cc,v 1.10 2006/06/29 21:16:17 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// ---------------------------------------------------------------
  • trunk/source/tracking/src/G4UserTrackingAction.cc

    r1196 r1228  
    2626//
    2727// $Id: G4UserTrackingAction.cc,v 1.10 2006/06/29 21:16:19 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// ---------------------------------------------------------------
  • trunk/source/tracking/src/G4VSteppingVerbose.cc

    r1196 r1228  
    2626//
    2727// $Id: G4VSteppingVerbose.cc,v 1.18 2006/11/14 10:58:47 tsasaki Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
  • trunk/source/tracking/src/G4VTrajectory.cc

    r1196 r1228  
    2626//
    2727// $Id: G4VTrajectory.cc,v 1.12 2006/10/16 13:45:01 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// ---------------------------------------------------------------
  • trunk/source/tracking/src/G4VTrajectoryPoint.cc

    r1196 r1228  
    2626//
    2727// $Id: G4VTrajectoryPoint.cc,v 1.4 2006/06/29 21:16:26 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//---------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.