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 |
|
|
}
|