28 lines
803 B
Plaintext
28 lines
803 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: G4Assembly.icc,v 1.2 2000/08/28 15:00:28 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
// --------------------------------------------------------------------
|
|
// GEANT 4 inline definitions file
|
|
//
|
|
// G4Assembly.icc
|
|
//
|
|
// Implementation of inline methods of G4Assembly
|
|
// --------------------------------------------------------------------
|
|
|
|
inline G4PlacedSolid* G4Assembly::GetPlacedSolid(G4int solidNumber) const
|
|
{
|
|
return placedVec[solidNumber];
|
|
}
|
|
|
|
inline G4int G4Assembly::GetNumberOfSolids() const
|
|
{
|
|
return numberOfSolids;
|
|
}
|