EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairGeoBuilder.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairGeoBuilder.cxx
1 //*-- AUTHOR : Ilse Koenig
2 //*-- Created : 11/11/03 by Ilse Koenig
3 
5 // FairGeoBuilder
6 //
7 // Base class for GEANT and ROOT builder classes to create the geometry
8 //
10 
11 #include "FairGeoBuilder.h"
12 
14 
16  :TNamed(),
17  nRot(0),
18  nMed(0)
19 {
20  // Default constructor
21 }
22 
23 FairGeoBuilder::FairGeoBuilder(const char* name,const char* title)
24  : TNamed(name,title),
25  nRot(0),
26  nMed(0)
27 {
28  // Constructor
29 }
30