#ifndef HTRIGGERPARMULEP_H
#define HTRIGGERPARMULEP_H
#include "hparcond.h"
#include "TString.h"
class HParamList; 
class HTriggerParMuLep : public HParCond {
private: 
  Int_t MUtheta;      
  Int_t MUphi_offset; 
  Int_t MUphi_slope;  
  Int_t MUfield;      
  Float_t MUtof;      
     
public:
  HTriggerParMuLep(const Char_t* name="TriggerParMuLep",
                  const Char_t* title="Parameters for MU Lepton Emulation",
                  const Char_t* context="TriggerProduction");
  ~HTriggerParMuLep(void);
  Int_t getMUtheta() { return MUtheta; }
  Int_t getMUphiOffset() { return MUphi_offset; }
  Int_t getMUphiSlope() { return MUphi_slope; }
  Int_t getMUfield() { return MUfield; }
  Float_t getMUtof() { return MUtof; }
  void setMUtheta(Int_t th) { MUtheta = th; }
  void setMUphiOffset(Int_t phO)  { MUphi_offset = phO; }  
  void setMUphiSlope(Int_t phS) { MUphi_slope = phS; }  
  void setMUfield(Int_t f) { MUfield = f; }  
  void setMUtof(Float_t tof) { MUtof = tof; }  
  void setDefaults(void);
  Bool_t init(HParIo*,Int_t*);
  Int_t write(HParIo*);
  void putParams(HParamList*);
  Bool_t getParams(HParamList*); 
  void clear();
  void printParam();
  void readline(const Char_t*, Int_t*);
  void putAsciiHeader(TString&);
  ClassDef(HTriggerParMuLep,1)  
};
#endif /* !HTRIGGERPARMULEP_H */
Last change: Sat May 22 13:17:16 2010
Last generated: 2010-05-22 13:17
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.