ATTPCROOT  0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
AtMagnet.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 // ----- AtMagnet file -----
11 // ----- Created 26/03/14 by M. Al-Turany -----
12 // -------------------------------------------------------------------------
13 
14 #ifndef MAGNET_H
15 #define MAGNET_H
16 
17 #include <FairModule.h> // for FairModule
18 
19 #include <Rtypes.h> // for AtMagnet::Class, Bool_t, etc
20 
21 class TBuffer;
22 class TClass;
23 class TMemberInspector;
24 
25 class AtMagnet : public FairModule {
26 public:
27  AtMagnet(const char *name, const char *Title = "MY Magnet");
28  AtMagnet();
29  virtual ~AtMagnet();
30  void ConstructGeometry();
31  ClassDef(AtMagnet, 1)
32 };
33 
34 #endif // MAGNET_H
AtMagnet::~AtMagnet
virtual ~AtMagnet()
AtMagnet::ConstructGeometry
void ConstructGeometry()
Definition: AtMagnet.cxx:33
AtMagnet::AtMagnet
AtMagnet()
Definition: AtMagnet.cxx:29
AtMagnet
Definition: AtMagnet.h:25