More information on this package is here.
#ifndef _TEPICValue_
#define _TEPICValue_
#include <iostream>
using namespace std;
#include "TObject.h"
#include "TString.h"
#include "TVector3.h"
#include "TMath.h"
#include "TList.h"
class TEPICValue:public TObject{
public:
TString fName;
Float_t fValue;
public:
TEPICValue(){};
TEPICValue(const char* name,Float_t val){fName = name;
fValue = val;};
TEPICValue(TEPICValue *tmp);
virtual ~TEPICValue(){};
const char* GetName() const {return fName;};
Float_t GetValue() const {return fValue;};
void SetValue(Float_t val){fValue = val;};
void SetName(const char* name){fName = name;};
void Resize(Ssiz_t size){fName.Resize(size);};
Int_t CompareTo(const char* member){return (fName.CompareTo(member));};
Int_t Compare(const TObject* obj) const;
Bool_t IsSortable() const { return kTRUE; }
void Print();
ClassDef(TEPICValue,1)
};
#endif
Author: Maurik Holtrop
Last update: ClasTool/ClasBanks:$Name: $:$Id: TEPICValue.cc,v 1.2 2007/03/01 22:26:59 holtrop Exp $
CopyLeft - This code is freely available.
ROOT Home page - ClasTool Class index - Class Hierarchy - Top of the page