FairRoot/PandaRoot
PndGeoFtof.cxx
Go to the documentation of this file.
1 // CbmGeoFtof
3 //
4 // Class for geometry of FTOF
5 //
6 
7 //
9 
10 #include "PndGeoFtof.h"
11 #include "FairGeoNode.h"
12 
14 
15 // ----- Default constructor -------------------------------------------
17  // Constructor
18 
19  fName="ft";
20  maxSectors=0;
21  maxModules=1;
22  strcpy(modName,"ft");
23  strcpy(eleName,"ft");
24  }
25 // -------------------------------------------------------------------------
26 /*
27 const char* PndGeoFtof::getModuleName(Int_t m) {
28  // Returns the module name of muo number m
29 
30  sprintf(modName,"stg0%i",m+1);
31  return modName;
32  cout << "MODNAME: " << modName << endl;
33 }
34 
35 const char* PndGeoFtof::getEleName(Int_t m) {
36  // Returns the element name of muo number m
37 
38  sprintf(eleName,"stglay%i",m+1);
39  return eleName;
40  cout << "ELENAME: " << eleName << endl;
41 }
42 */
43 
44 
45 
46 
47 
ClassImp(PndGeoFtof) PndGeoFtof
Definition: PndGeoFtof.cxx:13