56 lines
2.0 KiB
Plaintext
56 lines
2.0 KiB
Plaintext
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4Scale.icc,v 1.2 2001/07/24 21:41:42 johna Exp $
|
|
// GEANT4 tag $Name: geant4-04-00 $
|
|
//
|
|
//
|
|
// John Allison 21st July 2001.
|
|
|
|
inline G4double G4Scale::GetLength() const {
|
|
return fLength;
|
|
}
|
|
|
|
inline const G4String& G4Scale::GetAnnotation() const {
|
|
return fAnnotation;
|
|
}
|
|
inline G4Scale::Direction G4Scale::GetDirection() const {
|
|
return fDirection;
|
|
}
|
|
|
|
inline G4bool G4Scale::GetAutoPlacing() const {
|
|
return fAutoPlacing;
|
|
}
|
|
|
|
inline G4double G4Scale::GetXmid() const {
|
|
return fXmid;
|
|
}
|
|
|
|
inline G4double G4Scale::GetYmid() const {
|
|
return fYmid;
|
|
}
|
|
|
|
inline G4double G4Scale::GetZmid() const {
|
|
return fZmid;
|
|
}
|