#ifndef FAIRGEOCONE_H #define FAIRGEOCONE_H #include "FairGeoBasicShape.h" class FairGeoTransform; class FairGeoVolume; /** * class for geometry shape CONE * @author ilse koenig */ class FairGeoCone : public FairGeoBasicShape { public: FairGeoCone(); ~FairGeoCone(); TArrayD* calcVoluParam(FairGeoVolume*); void calcVoluPosition(FairGeoVolume*, const FairGeoTransform&,const FairGeoTransform&); Int_t readPoints(fstream*,FairGeoVolume*); Bool_t writePoints(fstream*,FairGeoVolume*); void printPoints(FairGeoVolume* volu); ClassDef(FairGeoCone,0) // }; #endif /* !FAIRGEOCONE_H */