38 lines
961 B
Plaintext
38 lines
961 B
Plaintext
// 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: G4VModel.icc,v 1.6 2001/02/23 15:43:34 johna Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
//
|
|
// John Allison 31st December 1997.
|
|
// Base class for models.
|
|
|
|
inline const G4ModelingParameters* G4VModel::GetModelingParameters () const {
|
|
return fpMP;
|
|
}
|
|
|
|
inline const G4String& G4VModel::GetGlobalTag () const {
|
|
return fGlobalTag;
|
|
}
|
|
|
|
inline const G4String& G4VModel::GetGlobalDescription () const {
|
|
return fGlobalDescription;
|
|
}
|
|
|
|
inline const G4VisExtent& G4VModel::GetExtent () const {
|
|
return fExtent;
|
|
}
|
|
|
|
inline const G4Transform3D& G4VModel::GetTransformation () const {
|
|
return fTransform;
|
|
}
|
|
|
|
inline void G4VModel::SetModelingParameters (const G4ModelingParameters* pMP) {
|
|
fpMP = pMP;
|
|
}
|