ATTPCROOT  0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
AtPipe.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 version 3 (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 
9 // -------------------------------------------------------------------------
10 // ----- AtPipe file -----
11 // ----- Created by M. Al-Turany June 2014 -----
12 // -------------------------------------------------------------------------
13 
14 #ifndef PIPE_H
15 #define PIPE_H
16 
17 #include <FairModule.h>
18 
19 #include <Rtypes.h>
20 
21 class TBuffer;
22 class TClass;
23 class TMemberInspector;
24 
25 class AtPipe : public FairModule {
26 public:
27  AtPipe(const char *name, const char *Title = "At Pipe");
28  AtPipe();
29 
30  virtual ~AtPipe();
31  virtual void ConstructGeometry();
32 
33  ClassDef(AtPipe, 1) // AtPIPE
34 };
35 
36 #endif // PIPE_H
AtPipe::AtPipe
AtPipe()
Definition: AtPipe.cxx:25
AtPipe::ConstructGeometry
virtual void ConstructGeometry()
Definition: AtPipe.cxx:30
AtPipe::~AtPipe
virtual ~AtPipe()
AtPipe
Definition: AtPipe.h:25