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