#ifndef HSCSPAR_H
#define HSCSPAR_H

#include "hparset.h"
#include "TObjArray.h"

class HScsPar : public HParSet {
protected:
  TObjArray* pChannels;     // Array of channels    
public:
  HScsPar(const Char_t*,const Char_t*);
  virtual ~HScsPar();
  virtual Bool_t init(HParIo* io,Int_t*);
  virtual Int_t write(HParIo*);
  virtual void clear();  
  virtual void printParams();
  virtual void putAsciiHeader(TString& s) {s="# Slow Control data\n";}
  void write(fstream&);
  TObjArray* getChannels() {return pChannels;}
protected:
  HScsPar();
  ClassDef(HScsPar,1) // Base class for Slow Control parameter containers
};

#endif  /* !HSCSPAR_H */

Last change: Sat May 22 13:13:09 2010
Last generated: 2010-05-22 13:13

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.