ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataCont/src/BaseCollection.cc
Revision: 1.2
Committed: Wed Dec 10 11:25:30 2008 UTC (16 years, 4 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_006b, Mit_006a
Changes since 1.1: +15 -1 lines
Log Message:
Prepared for Mit_008, but not enabled yet.

File Contents

# User Rev Content
1 loizides 1.2 // $Id: BaseCollection.cc,v 1.1 2008/07/29 10:36:21 loizides Exp $
2 loizides 1.1
3     #include "MitAna/DataCont/interface/BaseCollection.h"
4 loizides 1.2 #include <TClass.h>
5 loizides 1.1
6     ClassImp(mithep::BaseCollection)
7 loizides 1.2
8     //--------------------------------------------------------------------------------------------------
9     namespace {
10     class BaseCollectionIgnoreTObject {
11     public:
12     BaseCollectionIgnoreTObject() {
13     TClass *cls = TClass::GetClass("mithep::BaseCollection");
14     if (cls)
15     cls->IgnoreTObjectStreamer();
16     }
17     };
18     //DataCollectionIgnoreTObject dummy; //TODO enable for MIT_008 production
19     }