#ifndef HDETPARIO_H
#define HDETPARIO_H
using namespace std;
#include <iostream>
#include <iomanip>
#include "Rtypes.h"
#include "TNamed.h"
class HParSet;
class HDetector;
class HDetParIo : public TNamed {
protected:
Int_t inputNumber;
public:
HDetParIo() {}
virtual ~HDetParIo() {}
void setInputNumber(Int_t n) {inputNumber=n;}
Int_t getInputNumber() {return inputNumber;}
virtual Bool_t init(HParSet*,Int_t*) {return kFALSE;}
virtual Int_t write(HParSet*) {return kFALSE;}
virtual Bool_t write(HDetector*) {return kFALSE;}
ClassDef(HDetParIo,0)
};
#endif /* !HDETPARIO_H */
Last change: Sat May 22 12:54:37 2010
Last generated: 2010-05-22 12:54
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.