| [831] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | //
|
|---|
| 27 | // $Id: G4Assembly.hh,v 1.10 2006/06/29 18:37:33 gunter Exp $
|
|---|
| [850] | 28 | // GEANT4 tag $Name: HEAD $
|
|---|
| [831] | 29 | //
|
|---|
| 30 | // ----------------------------------------------------------------------
|
|---|
| 31 | // Class G4Assembly
|
|---|
| 32 | //
|
|---|
| 33 | // Class description:
|
|---|
| 34 | //
|
|---|
| 35 | // Object providing access to the final assembled geometry as read, for
|
|---|
| 36 | // instance, from a STEP file description. It owns a vector of placed
|
|---|
| 37 | // solids which must be initialised through the SetPlacedVector()
|
|---|
| 38 | // method. Currently, it simply provides a way to retrieve the pointer
|
|---|
| 39 | // to each placed solid, and to determine the number of solids currently
|
|---|
| 40 | // placed.
|
|---|
| 41 |
|
|---|
| 42 | // Authors: J.Sulkimo, P.Urban.
|
|---|
| 43 | // Revisions by: L.Broglia, G.Cosmo.
|
|---|
| 44 | // ----------------------------------------------------------------------
|
|---|
| 45 |
|
|---|
| 46 | #ifndef G4ASSEMBLY_HH
|
|---|
| 47 | #define G4ASSEMBLY_HH
|
|---|
| 48 |
|
|---|
| 49 | #include <vector>
|
|---|
| 50 | #include "G4PlacedSolid.hh"
|
|---|
| 51 | #include "G4BREPSolid.hh"
|
|---|
| 52 |
|
|---|
| 53 | typedef std::vector<G4PlacedSolid*> G4PlacedVector;
|
|---|
| 54 |
|
|---|
| 55 | class G4Assembly
|
|---|
| 56 | {
|
|---|
| 57 |
|
|---|
| 58 | public: // with description
|
|---|
| 59 |
|
|---|
| 60 | G4Assembly();
|
|---|
| 61 | ~G4Assembly();
|
|---|
| 62 | // Constructor & destructor
|
|---|
| 63 |
|
|---|
| 64 | void SetPlacedVector(G4PlacedVector&);
|
|---|
| 65 | inline G4PlacedSolid* GetPlacedSolid(G4int solidNumber) const;
|
|---|
| 66 | inline G4int GetNumberOfSolids() const;
|
|---|
| 67 |
|
|---|
| 68 | private:
|
|---|
| 69 |
|
|---|
| 70 | G4Assembly(const G4Assembly&);
|
|---|
| 71 | G4Assembly& operator=(const G4Assembly&);
|
|---|
| 72 | // Private copy constructor and assignment operator.
|
|---|
| 73 |
|
|---|
| 74 | private:
|
|---|
| 75 |
|
|---|
| 76 | G4int numberOfSolids;
|
|---|
| 77 | G4PlacedVector placedVec;
|
|---|
| 78 |
|
|---|
| 79 | };
|
|---|
| 80 |
|
|---|
| 81 | #include "G4Assembly.icc"
|
|---|
| 82 |
|
|---|
| 83 | #endif
|
|---|