#ifndef HKICKPARINFO_H
#define HKICKPARINFO_H

#include "TObject.h"
#include "TString.h"
#include "hgeomvector.h"

class HKickParInfo : public TObject {
 protected:
  TString fDate;
  TString fAuthor;
  TString fComment;
  HGeomVector fVertex;
  Float_t fFieldStrength;
  TString fMode;
 public:
  HKickParInfo(void) { fFieldStrength=0.;}
  ~HKickParInfo(void) {}
  void setDate(TString d) { fDate = d; }
  void setAuthor(TString d) { fAuthor = d; }
  void setComment(TString d) { fComment = d; }
  void setVertex(Float_t x,Float_t y,Float_t z) {
    fVertex.setXYZ(x,y,z);
  }
  void setFieldStrength(Float_t f) { fFieldStrength = f; }
  void setMode(TString mode) { fMode = mode; }
  void print(void);
  ClassDef(HKickParInfo,1)
};

#endif

Last change: Sat May 22 12:58:26 2010
Last generated: 2010-05-22 12:58

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.