ROOT logo
#include "hrecobject.h"
//*-- Author : Manuel Sanchez 
//*-- Modified : 24/03/98 by Manuel Sanchez
//*-- Copyright : GENP (Univ. Santiago de Compostela)

//*************************************************************************
//
// HRecObject
//
// This class stands for the data objects reconstructed using other data
// objects of which you want to keep track.
// 
// A HRecObject is a dat Object plus a list of identifiers of the objects
// used to reconstruct this particular data object.
//
// This class is not instrumented yet.
//
//*************************************************************************

ClassImp(HRecObject)

HRecObject::HRecObject(void) {
  // Constructor.
}

HRecObject::HRecObject(HRecObject &aObj) : TObject(aObj) {
  //Copy constructor.
}

HRecObject::~HRecObject(void) {
  // Destructor.
}

 hrecobject.cc:1
 hrecobject.cc:2
 hrecobject.cc:3
 hrecobject.cc:4
 hrecobject.cc:5
 hrecobject.cc:6
 hrecobject.cc:7
 hrecobject.cc:8
 hrecobject.cc:9
 hrecobject.cc:10
 hrecobject.cc:11
 hrecobject.cc:12
 hrecobject.cc:13
 hrecobject.cc:14
 hrecobject.cc:15
 hrecobject.cc:16
 hrecobject.cc:17
 hrecobject.cc:18
 hrecobject.cc:19
 hrecobject.cc:20
 hrecobject.cc:21
 hrecobject.cc:22
 hrecobject.cc:23
 hrecobject.cc:24
 hrecobject.cc:25
 hrecobject.cc:26
 hrecobject.cc:27
 hrecobject.cc:28
 hrecobject.cc:29
 hrecobject.cc:30
 hrecobject.cc:31
 hrecobject.cc:32
 hrecobject.cc:33