EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairGeoCompositeVolume.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairGeoCompositeVolume.h
1 #ifndef FAIRGEOCOMPOSITEVOLUME_H
2 #define FAIRGEOCOMPOSITEVOLUME_H
3 
4 #include "FairGeoVolume.h"
5 
6 class TObjArray;
12 {
13  protected:
14  TObjArray* components; // array of components (type FairGeoVolume)
15  public:
16  FairGeoCompositeVolume(Int_t nComp=0);
18  Int_t getNumComponents();
19  FairGeoVolume* getComponent(const Int_t);
20  void createComponents(const Int_t);
21  void setComponent(FairGeoVolume*,const Int_t);
22  void clear();
23  void print();
24  ClassDef(FairGeoCompositeVolume,1)
25  private:
27  FairGeoCompositeVolume& operator=(const FairGeoCompositeVolume&);
28 
29 };
30 
31 #endif /* !FAIRGEOCOMPOSITEVOLUME_H */