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

update geant4.9.3 tag

Location:
trunk/source/digits_hits/scorer/src
Files:
47 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/digits_hits/scorer/src/G4PSCellCharge.cc

    r1012 r1228  
    2525//
    2626// $Id: G4PSCellCharge.cc,v 1.1 2007/07/11 01:31:02 asaim Exp $
    27 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// G4PSCellCharge
  • trunk/source/digits_hits/scorer/src/G4PSCellCharge3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSCellCharge3D.cc,v 1.3 2007/08/29 06:36:41 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSCellCharge3D
  • trunk/source/digits_hits/scorer/src/G4PSCellFlux.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSCellFlux.cc,v 1.2 2008/12/28 20:32:00 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSCellFlux
  • trunk/source/digits_hits/scorer/src/G4PSCellFlux3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSCellFlux3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSCellFlux3D
  • trunk/source/digits_hits/scorer/src/G4PSCylinderSurfaceCurrent.cc

    r1012 r1228  
    2525//
    2626//
    27 // $Id: G4PSCylinderSurfaceCurrent.cc,v 1.2 2008/12/28 21:10:51 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     27// $Id: G4PSCylinderSurfaceCurrent.cc,v 1.3 2009/11/14 00:01:13 asaim Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSCylinderSurfaceCurrent
     
    8787
    8888  G4int dirFlag =IsSelectedSurface(aStep,tubsSolid);
     89  G4cout << " pos " << preStep->GetPosition() <<" dirFlag " << G4endl;
    8990  if ( dirFlag > 0 ) {
    9091    if ( fDirection == fCurrent_InOut || fDirection == dirFlag ){
     
    121122      theTouchable->GetHistory()->GetTopTransform().TransformPoint(stppos1);
    122123    if ( std::fabs(localpos1.z()) > tubsSolid->GetZHalfLength() ) return -1;
    123     if(std::fabs( (localpos1.x()*localpos1.x()+localpos1.y()*localpos1.y())
    124                   -(tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius()) )
    125        < kCarTolerance ){
     124    //if(std::fabs( localpos1.x()*localpos1.x()+localpos1.y()*localpos1.y()
     125    //    -(tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius()))
     126    //       < kCarTolerance ){
     127    G4double localR2 = localpos1.x()*localpos1.x()+localpos1.y()*localpos1.y();
     128    G4double InsideRadius = tubsSolid->GetInnerRadius();
     129    if (localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     130        &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    126131      return fCurrent_In;
    127132    }
     
    134139      theTouchable->GetHistory()->GetTopTransform().TransformPoint(stppos2);
    135140    if ( std::fabs(localpos2.z()) > tubsSolid->GetZHalfLength() ) return -1;
    136     if(std::fabs( (localpos2.x()*localpos2.x()+localpos2.y()*localpos2.y())
    137                   - (tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius()) )
    138        <kCarTolerance ){
     141    //if(std::fabs( localpos2.x()*localpos2.x()+localpos2.y()*localpos2.y()
     142    //    - (tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius()))
     143    //       <kCarTolerance ){
     144    G4double localR2 = localpos2.x()*localpos2.x()+localpos2.y()*localpos2.y();
     145    G4double InsideRadius = tubsSolid->GetInnerRadius();
     146    if (localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     147        &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    139148      return fCurrent_Out;
    140149    }
  • trunk/source/digits_hits/scorer/src/G4PSCylinderSurfaceCurrent3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSCylinderSurfaceCurrent3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSCylinderSurfaceCurrent3D
  • trunk/source/digits_hits/scorer/src/G4PSCylinderSurfaceFlux.cc

    r1012 r1228  
    2525//
    2626//
    27 // $Id: G4PSCylinderSurfaceFlux.cc,v 1.3 2008/12/28 21:10:51 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     27// $Id: G4PSCylinderSurfaceFlux.cc,v 1.4 2009/11/14 00:01:13 asaim Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// // G4PSCylinderSurfaceFlux
     
    144144      theTouchable->GetHistory()->GetTopTransform().TransformPoint(stppos1);
    145145    if ( std::fabs(localpos1.z()) > tubsSolid->GetZHalfLength() ) return -1;
    146     if(std::fabs( localpos1.x()*localpos1.x()+localpos1.y()*localpos1.y() )
    147        - (tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius())<kCarTolerance ){
     146    //if(std::fabs( localpos1.x()*localpos1.x()+localpos1.y()*localpos1.y() 
     147    //   - (tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius()))
     148    //   <kCarTolerance ){
     149    G4double localR2 = localpos1.x()*localpos1.x()+localpos1.y()*localpos1.y();
     150    G4double InsideRadius = tubsSolid->GetInnerRadius();
     151    if (localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     152        &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    148153      return fFlux_In;
    149154    }
     
    156161      theTouchable->GetHistory()->GetTopTransform().TransformPoint(stppos2);
    157162    if ( std::fabs(localpos2.z()) > tubsSolid->GetZHalfLength() ) return -1;
    158     if(std::fabs( localpos2.x()*localpos2.x()+localpos2.y()*localpos2.y() )
    159        - (tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius())<kCarTolerance ){
     163    //if(std::fabs( localpos2.x()*localpos2.x()+localpos2.y()*localpos2.y() 
     164    //   - (tubsSolid->GetInnerRadius()*tubsSolid->GetInnerRadius()))
     165    // <kCarTolerance ){
     166    G4double localR2 = localpos2.x()*localpos2.x()+localpos2.y()*localpos2.y();
     167    G4double InsideRadius = tubsSolid->GetInnerRadius();
     168    if (localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     169        &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    160170      return fFlux_Out;
    161171    }
  • trunk/source/digits_hits/scorer/src/G4PSCylinderSurfaceFlux3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSCylinderSurfaceFlux3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSCylinderSurfaceFlux3D
  • trunk/source/digits_hits/scorer/src/G4PSDoseDeposit.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSDoseDeposit.cc,v 1.2 2008/12/28 20:32:00 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSDoseDeposit
  • trunk/source/digits_hits/scorer/src/G4PSDoseDeposit3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSDoseDeposit3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSDoseDeposit3D
  • trunk/source/digits_hits/scorer/src/G4PSEnergyDeposit.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSEnergyDeposit.cc,v 1.1 2007/07/11 01:31:02 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSEnergyDeposit
  • trunk/source/digits_hits/scorer/src/G4PSEnergyDeposit3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSEnergyDeposit3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSEnergyDeposit3D
  • trunk/source/digits_hits/scorer/src/G4PSFlatSurfaceCurrent.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSFlatSurfaceCurrent.cc,v 1.3 2008/12/29 00:17:14 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSFlatSurfaceCurrent
  • trunk/source/digits_hits/scorer/src/G4PSFlatSurfaceCurrent3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSFlatSurfaceCurrent3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSFlatSurfaceCurrent3D
  • trunk/source/digits_hits/scorer/src/G4PSFlatSurfaceFlux.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSFlatSurfaceFlux.cc,v 1.2 2008/12/29 00:17:14 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSFlatSurfaceFlux
  • trunk/source/digits_hits/scorer/src/G4PSFlatSurfaceFlux3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSFlatSurfaceFlux3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSFlatSurfaceFlux3D
  • trunk/source/digits_hits/scorer/src/G4PSMinKinEAtGeneration.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSMinKinEAtGeneration.cc,v 1.1 2007/07/11 01:31:02 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSMinKinEAtGeneration
  • trunk/source/digits_hits/scorer/src/G4PSMinKinEAtGeneration3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSMinKinEAtGeneration3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSMinKinEAtGeneration3D
  • trunk/source/digits_hits/scorer/src/G4PSNofCollision.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSNofCollision.cc,v 1.1 2007/07/11 01:31:02 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSNofCollision
  • trunk/source/digits_hits/scorer/src/G4PSNofCollision3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSNofCollision3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSNofCollision3D
  • trunk/source/digits_hits/scorer/src/G4PSNofSecondary.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSNofSecondary.cc,v 1.2 2007/08/14 21:23:51 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSNofSecondary
  • trunk/source/digits_hits/scorer/src/G4PSNofSecondary3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSNofSecondary3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSNofSecondary3D
  • trunk/source/digits_hits/scorer/src/G4PSNofStep.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSNofStep.cc,v 1.2 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSNofStep
  • trunk/source/digits_hits/scorer/src/G4PSNofStep3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSNofStep3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSNofStep3D
  • trunk/source/digits_hits/scorer/src/G4PSPassageCellCurrent.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPassageCellCurrent.cc,v 1.1 2007/08/14 21:30:46 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPassageCellCurrent
  • trunk/source/digits_hits/scorer/src/G4PSPassageCellCurrent3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPassageCellCurrent3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPassageCellCurrent3D
  • trunk/source/digits_hits/scorer/src/G4PSPassageCellFlux.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPassageCellFlux.cc,v 1.2 2008/12/28 20:32:00 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPassageCellFlux
  • trunk/source/digits_hits/scorer/src/G4PSPassageCellFlux3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPassageCellFlux3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPassageCellFlux3D
  • trunk/source/digits_hits/scorer/src/G4PSPassageTrackLength.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPassageTrackLength.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPassageTrackLength
  • trunk/source/digits_hits/scorer/src/G4PSPassageTrackLength3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPassageTrackLength3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPassageTrackLength3D
  • trunk/source/digits_hits/scorer/src/G4PSPopulation.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPopulation.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPopulation
  • trunk/source/digits_hits/scorer/src/G4PSPopulation3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSPopulation3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSPopulation3D
  • trunk/source/digits_hits/scorer/src/G4PSSphereSurfaceCurrent.cc

    r1012 r1228  
    2525//
    2626//
    27 // $Id: G4PSSphereSurfaceCurrent.cc,v 1.3 2008/12/29 00:17:14 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     27// $Id: G4PSSphereSurfaceCurrent.cc,v 1.4 2009/11/14 00:01:13 asaim Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSSphereSurfaceCurrent
     
    121121                      +localpos1.y()*localpos1.y()
    122122                      +localpos1.z()*localpos1.z();
    123     G4double InsideRadius2 =
    124       sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
    125     if(std::fabs( localR2 - InsideRadius2 ) < kCarTolerance ){
     123    //G4double InsideRadius2 =
     124    //  sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
     125    //if(std::fabs( localR2 - InsideRadius2 ) < kCarTolerance ){
     126    G4double InsideRadius = sphereSolid->GetInsideRadius();
     127    if ( localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     128         &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    126129      return fCurrent_In;
    127130    }
     
    136139                      +localpos2.y()*localpos2.y()
    137140                      +localpos2.z()*localpos2.z();
    138     G4double InsideRadius2 =
    139       sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
    140     if(std::fabs( localR2 - InsideRadius2 ) < kCarTolerance ){
     141    //G4double InsideRadius2 =
     142    //  sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
     143    //if(std::fabs( localR2 - InsideRadius2 ) < kCarTolerance ){
     144    G4double InsideRadius = sphereSolid->GetInsideRadius();
     145    if ( localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     146         &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    141147      return fCurrent_Out;
    142148    }
  • trunk/source/digits_hits/scorer/src/G4PSSphereSurfaceCurrent3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSSphereSurfaceCurrent3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSSphereSurfaceCurrent3D
  • trunk/source/digits_hits/scorer/src/G4PSSphereSurfaceFlux.cc

    r1012 r1228  
    2525//
    2626//
    27 // $Id: G4PSSphereSurfaceFlux.cc,v 1.2 2008/12/29 00:17:14 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     27// $Id: G4PSSphereSurfaceFlux.cc,v 1.3 2009/11/14 00:01:13 asaim Exp $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSSphereSurfaceFlux
     
    149149                      +localpos1.y()*localpos1.y()
    150150                      +localpos1.z()*localpos1.z();
    151     G4double InsideRadius2 =
    152       sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
    153     if(std::fabs( localR2 - InsideRadius2 ) < kCarTolerance ){
     151    //G4double InsideRadius2 =
     152    //  sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
     153    //if(std::fabs( localR2 - InsideRadius2 ) < kCarTolerance ){
     154    G4double InsideRadius = sphereSolid->GetInsideRadius();
     155    if ( localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     156         &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    154157      return fFlux_In;
    155158    }
     
    164167                      +localpos2.y()*localpos2.y()
    165168                      +localpos2.z()*localpos2.z();
    166     G4double InsideRadius2 =
    167       sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
    168     if(std::fabs( localR2 - InsideRadius2 ) < kCarTolerance ){
     169    //G4double InsideRadius2 =
     170    //  sphereSolid->GetInsideRadius()*sphereSolid->GetInsideRadius();
     171    //if(std::facb(localR2 - InsideRadius2) ) < kCarTolerance ){
     172    G4double InsideRadius = sphereSolid->GetInsideRadius();
     173    if ( localR2 > (InsideRadius-kCarTolerance)*(InsideRadius-kCarTolerance)
     174         &&localR2 < (InsideRadius+kCarTolerance)*(InsideRadius+kCarTolerance)){
    169175      return fFlux_Out;
    170176    }
  • trunk/source/digits_hits/scorer/src/G4PSSphereSurfaceFlux3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSSphereSurfaceFlux3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSSphereSurfaceFlux3D
  • trunk/source/digits_hits/scorer/src/G4PSTermination.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSTermination.cc,v 1.2 2007/12/10 16:29:42 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSTermination
  • trunk/source/digits_hits/scorer/src/G4PSTermination3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSTermination3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSTermination3D
  • trunk/source/digits_hits/scorer/src/G4PSTrackCounter.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSTrackCounter.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSTrackCounter
  • trunk/source/digits_hits/scorer/src/G4PSTrackCounter3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSTrackCounter3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSTrackCounter3D
  • trunk/source/digits_hits/scorer/src/G4PSTrackLength.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSTrackLength.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSTrackLength
  • trunk/source/digits_hits/scorer/src/G4PSTrackLength3D.cc

    r1012 r1228  
    2626//
    2727// $Id: G4PSTrackLength3D.cc,v 1.3 2007/08/29 06:36:42 taso Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4PSTrackLength3D
  • trunk/source/digits_hits/scorer/src/G4SDChargedFilter.cc

    r1012 r1228  
    2626//
    2727// $Id: G4SDChargedFilter.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4VSensitiveDetector
  • trunk/source/digits_hits/scorer/src/G4SDKineticEnergyFilter.cc

    r1012 r1228  
    2626//
    2727// $Id: G4SDKineticEnergyFilter.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4VSensitiveDetector
  • trunk/source/digits_hits/scorer/src/G4SDNeutralFilter.cc

    r1012 r1228  
    2626//
    2727// $Id: G4SDNeutralFilter.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4VSensitiveDetector
  • trunk/source/digits_hits/scorer/src/G4SDParticleFilter.cc

    r1012 r1228  
    2626//
    2727// $Id: G4SDParticleFilter.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4VSensitiveDetector
  • trunk/source/digits_hits/scorer/src/G4SDParticleWithEnergyFilter.cc

    r1012 r1228  
    2626//
    2727// $Id: G4SDParticleWithEnergyFilter.cc,v 1.1 2007/07/11 01:31:03 asaim Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// G4VSensitiveDetector
Note: See TracChangeset for help on using the changeset viewer.