ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/DataBase.cc
Revision: 1.1
Committed: Tue Dec 2 09:30:11 2008 UTC (16 years, 5 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
Added DataBase for objects that do not need to the TObjects bits.

File Contents

# Content
1 // $Id: DataObject.cc,v 1.1 2008/06/04 09:08:36 loizides Exp $
2
3 #include "MitAna/DataTree/interface/DataBase.h"
4 #include <TClass.h>
5
6 ClassImp(mithep::DataBase)
7
8
9 //--------------------------------------------------------------------------------------------------
10 namespace {
11 class DataBaseIgnoreTObject {
12 public:
13 DataBaseIgnoreTObject() {
14 TClass *cls = TClass::GetClass("mithep::DataBase");
15 cls->IgnoreTObjectStreamer();
16 }
17 };
18 DataBaseIgnoreTObject dummy;
19 }