//*-- Author : Damir Buskulic 24/06/00//////////////////////////////////////////////////////////////////////////// //// VMetaString //// //// Helper class contains strings for meta data. Used for building //// branches of the meta tree. TString cannot be used because it is not //// collectable (does not derive from TObject. VMetaString is more //// efficient than TObjString for our purposes. //// ////////////////////////////////////////////////////////////////////////////
#include "VMetaString.h"
ClassImp(VMetaString)
//______________________________________________________________________________VMetaString::VMetaString(TString fileName, TString detector, TString state)
: TObject()
{
// Meta string constructormFileName=fileName;
mDetector=detector;
mState=state;
}
//______________________________________________________________________________VMetaString::VMetaString() : TObject()
{
// Metadata default constructormFileName="";
mDetector="";
mState="";
}
//______________________________________________________________________________VMetaString::~VMetaString()
{
// Metadata destructor
}
- ROOT page - VEGA page - Class index - Top of the page This page has been automatically generated. If you have any comments or suggestions
about the page layout send a mail to
, or
contact
with any questions or problems regarding ROOT or VEGA.