ROOT logo
#ifndef HMDCDETECTOR_H
#define HMDCDETECTOR_H

#include "hdetector.h"
#include "haddef.h"
#include "TArrayI.h"

class HMdcDetector : public HDetector {
public:
  HMdcDetector();
  ~HMdcDetector();

  Bool_t init(void);
  void activateParIo(HParIo* io);
  Bool_t write(HParIo* io);
  HCategory* buildLinearCategory(const Text_t* className);
  HCategory* buildMatrixCategory(const Text_t* className,Float_t fillRate);
  HCategory* buildCategory(Cat_t cat);

  ClassDef(HMdcDetector,1) // Mdc detector class
};

#endif  /* !HMDCDETECTOR_H */
                                                            
 hmdcdetector.h:1
 hmdcdetector.h:2
 hmdcdetector.h:3
 hmdcdetector.h:4
 hmdcdetector.h:5
 hmdcdetector.h:6
 hmdcdetector.h:7
 hmdcdetector.h:8
 hmdcdetector.h:9
 hmdcdetector.h:10
 hmdcdetector.h:11
 hmdcdetector.h:12
 hmdcdetector.h:13
 hmdcdetector.h:14
 hmdcdetector.h:15
 hmdcdetector.h:16
 hmdcdetector.h:17
 hmdcdetector.h:18
 hmdcdetector.h:19
 hmdcdetector.h:20
 hmdcdetector.h:21
 hmdcdetector.h:22
 hmdcdetector.h:23
 hmdcdetector.h:24