Ignore:
Timestamp:
Jun 18, 2010, 11:42:07 AM (14 years ago)
Author:
garnier
Message:

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/persistency/gdml/include/G4GDMLParser.icc

    r1228 r1315  
    2525//
    2626//
    27 // $Id: G4GDMLParser.icc,v 1.8 2009/01/22 11:02:07 gcosmo Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     27// $Id: G4GDMLParser.icc,v 1.9 2010/02/17 18:06:25 gcosmo Exp $
     28// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
    2929//
    3030//
     
    8484//
    8585
     86inline G4bool G4GDMLParser::IsValid(const G4String& name) const
     87{
     88  return reader->IsValidID(name);
     89}
     90
    8691inline
    87 G4double G4GDMLParser::GetConstant(const G4String& name)
     92G4double G4GDMLParser::GetConstant(const G4String& name) const
    8893{
    8994  return reader->GetConstant(name);
     
    9196
    9297inline
    93 G4double G4GDMLParser::GetVariable(const G4String& name)
     98G4double G4GDMLParser::GetVariable(const G4String& name) const
    9499{
    95100  return reader->GetVariable(name);
     
    97102
    98103inline
    99 G4double G4GDMLParser::GetQuantity(const G4String& name)
     104G4double G4GDMLParser::GetQuantity(const G4String& name) const
    100105{
    101106  return reader->GetQuantity(name);
     
    103108
    104109inline
    105 G4ThreeVector G4GDMLParser::GetPosition(const G4String& name)
     110G4ThreeVector G4GDMLParser::GetPosition(const G4String& name) const
    106111{
    107112  return reader->GetPosition(name);
     
    109114
    110115inline
    111 G4ThreeVector G4GDMLParser::GetRotation(const G4String& name)
     116G4ThreeVector G4GDMLParser::GetRotation(const G4String& name) const
    112117{
    113118  return reader->GetRotation(name);
     
    115120
    116121inline
    117 G4ThreeVector G4GDMLParser::GetScale(const G4String& name)
     122G4ThreeVector G4GDMLParser::GetScale(const G4String& name) const
    118123{
    119124  return reader->GetScale(name);
     
    121126
    122127inline
    123 G4GDMLMatrix G4GDMLParser::GetMatrix(const G4String& name)
     128G4GDMLMatrix G4GDMLParser::GetMatrix(const G4String& name) const
    124129{
    125130  return reader->GetMatrix(name);
     
    127132
    128133inline
    129 G4LogicalVolume* G4GDMLParser::GetVolume(const G4String& name)
     134G4LogicalVolume* G4GDMLParser::GetVolume(const G4String& name) const
    130135{
    131136  return reader->GetVolume(name);
    132137}
    133138
    134 inline
    135 G4VPhysicalVolume* G4GDMLParser::GetWorldVolume(const G4String& setupName)
     139inline G4VPhysicalVolume*
     140G4GDMLParser::GetWorldVolume(const G4String& setupName) const
    136141{
    137142  return reader->GetWorldVolume(setupName);
Note: See TracChangeset for help on using the changeset viewer.