#ifndef HGEOMSECTORS_H
#define HGEOMSECTORS_H

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

class HGeomMedia;

class  HGeomSectors : public HGeomSet {
protected:
  Char_t modName[5];  // name of sector
public:
  HGeomSectors();
  ~HGeomSectors() {}
  const Char_t* getModuleName(Int_t);  
  inline Int_t getModNumInMod(const TString&);
  Bool_t read(fstream&,HGeomMedia*);
  void addRefNodes();
  ClassDef(HGeomSectors,0) // Class for geometry of Sectors
};

#endif  /* !HGEOMSECTORS_H */

inline Int_t HGeomSectors::getModNumInMod(const TString& name) {
  // returns the sector index retrieved from SECx 
  return (Int_t)(name[3]-'0')-1;
}

Last change: Sat May 22 12:56:36 2010
Last generated: 2010-05-22 12:56

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.