FairPipe.h 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. /********************************************************************************
  2. * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
  3. * *
  4. * This software is distributed under the terms of the *
  5. * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
  6. * copied verbatim in the file "LICENSE" *
  7. ********************************************************************************/
  8. #ifndef PIPE_H
  9. #define PIPE_H
  10. #include "FairModule.h" // for FairModule
  11. #include "Rtypes.h" // for FairPipe::Class, ClassDef, etc
  12. #include <string> // for string
  13. class FairPipe : public FairModule
  14. {
  15. public:
  16. FairPipe(const char* name, const char* Title="PND Pipe");
  17. FairPipe();
  18. virtual ~FairPipe();
  19. void ConstructGeometry();
  20. void ConstructASCIIGeometry();
  21. ClassDef(FairPipe,1) //PNDPIPE
  22. };
  23. #endif //PIPE_H