FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FairGeoBuilder.cxx
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 //*-- AUTHOR : Ilse Koenig
9 //*-- Created : 11/11/03 by Ilse Koenig
10 
12 // FairGeoBuilder
13 //
14 // Base class for GEANT and ROOT builder classes to create the geometry
15 //
17 
18 #include "FairGeoBuilder.h"
19 
21 
23  : TNamed()
24  , nRot(0)
25  , nMed(0)
26 {
27  // Default constructor
28 }
29 
30 FairGeoBuilder::FairGeoBuilder(const char* name, const char* title)
31  : TNamed(name, title)
32  , nRot(0)
33  , nMed(0)
34 {
35  // Constructor
36 }
ClassImp(FairEventBuilder)