ROOT logo
#ifndef HGEOMCOILS_H
#define HGEOMCOILS_H

#include "hgeomset.h"
#include "TString.h"

class  HGeomCoils : public HGeomSet {
protected:
  Char_t modName[6];  // name of module
  Char_t eleName[2];  // substring for elements in module
public:
  HGeomCoils();
  ~HGeomCoils() {}
  const Char_t* getModuleName(Int_t) {return modName;}
  const Char_t* getEleName(Int_t) {return eleName;}
  Int_t getSecNumInMod(const TString& name) {return (Int_t)(name[4]-'0')-1;}
  ClassDef(HGeomCoils,0) // Class for the geometry of Magnet
};

#endif  /* !HGEOMCOILS_H */
 hgeomcoils.h:1
 hgeomcoils.h:2
 hgeomcoils.h:3
 hgeomcoils.h:4
 hgeomcoils.h:5
 hgeomcoils.h:6
 hgeomcoils.h:7
 hgeomcoils.h:8
 hgeomcoils.h:9
 hgeomcoils.h:10
 hgeomcoils.h:11
 hgeomcoils.h:12
 hgeomcoils.h:13
 hgeomcoils.h:14
 hgeomcoils.h:15
 hgeomcoils.h:16
 hgeomcoils.h:17
 hgeomcoils.h:18
 hgeomcoils.h:19
 hgeomcoils.h:20