#ifndef HSTARTPARASCIIFILEIO_H #define HSTARTPARASCIIFILEIO_H #include "hdetparasciifileio.h" #include class HParSet; class HStartParAsciiFileIo : public HDetParAsciiFileIo { public: HStartParAsciiFileIo(fstream*); ~HStartParAsciiFileIo() {} Bool_t init(HParSet*, Int_t*); Int_t write(HParSet*); template Bool_t read(T*); template Bool_t read(T*, Int_t*, Bool_t needsClear = kFALSE); template Bool_t readStartModule(T*, Int_t*, Bool_t needsClear = kFALSE); template Int_t write(T*); template Int_t writeFile2(T*); ClassDef(HStartParAsciiFileIo, 0) // Class for START parameter I/O from Ascii files }; #endif /* !HSTARTPARASCIIFILEIO_H */