More information on this package is here.
//Begin_Html <!--
/* -->
<h1>TEPICValue</h1>
<pre>
Modifications:
Maurik (7/05) Comments.
</pre>
This class is part of the sytem to access the EPIC data stored in the
(RAW only!) BOS file. See TEPICclass for more detail. This is
just a sortable container for a name and a value.
<pre>
<!-- ______________________________________________________________________*/
// --> End_Html
#include "TEPICValue.h"
ClassImp(TEPICValue)
TEPICValue::TEPICValue(TEPICValue *tmp){
fName=tmp->fName;
fValue=tmp->fValue;
}
void TEPICValue::Print(){
cout << "TEPICValue: Name:" << fName << " Value: " << fValue << endl;
}
Int_t TEPICValue::Compare(const TObject *obj) const{
return (fName.CompareTo((const char*)obj->GetName()));
}
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