BmnRoot
Loading...
Searching...
No Matches
FairPipe.h
Go to the documentation of this file.
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 (LGPL) version 3, *
6 * copied verbatim in the file "LICENSE" *
7 ********************************************************************************/
8#ifndef PIPE_H
9#define PIPE_H
10
11#include "FairModule.h" // for FairModule
12
13#include <Rtypes.h> // for FairPipe::Class, ClassDef, etc
14
15class FairPipe : public FairModule
16{
17 public:
18 FairPipe(const char* name, const char* Title = "PND Pipe");
19 FairPipe();
20
21 virtual ~FairPipe();
22 virtual void ConstructGeometry();
23
24 virtual FairModule* CloneModule() const;
25
26 private:
27 FairPipe(const FairPipe& rhs);
28
29 ClassDef(FairPipe, 1);
30};
31
32#endif // PIPE_H
virtual ~FairPipe()
Definition FairPipe.cxx:24
virtual void ConstructGeometry()
Definition FairPipe.cxx:38
virtual FairModule * CloneModule() const
Definition FairPipe.cxx:49