StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StHbtClassImp.cxx
1 /***************************************************************************
2  *
3  * $Id: StHbtClassImp.cxx,v 1.4 2001/09/05 20:40:42 laue Exp $
4  *
5  * Author: Frank Laue, Ohio State, laue@mps.ohio-state.edu
6  ***************************************************************************
7  *
8  * Description: part of STAR HBT Framework: StHbtMaker package
9  * Root fix. All the base classes which have a 'ClassDef' now need a
10  * corresponding 'ClassImp'
11  *
12  ***************************************************************************
13  *
14  * $Log: StHbtClassImp.cxx,v $
15  * Revision 1.4 2001/09/05 20:40:42 laue
16  * Updates of the hbtMuDstTree microDSTs
17  *
18  * Revision 1.3 2001/06/01 16:30:26 laue
19  * ClassDef added for StHbtKinkCut
20  *
21  * Revision 1.2 2000/05/25 20:53:32 laue
22  * StHbtBaseAnalysis added
23  *
24  * Revision 1.1 2000/05/24 21:13:37 laue
25  * Since new rootcint (2.24.04 and higher) each ClassDef has to have matched
26  * ClassImp otherwise you will have missing Dictionary symbol in a shared
27  * library.
28  * In this file we collect the 'ClassImp's from classes which do not have
29  * a '.cxx' or '.cc' file (.e.g base classes).
30  *
31  *
32  **************************************************************************/
33 
34 #include "StHbtMaker/Base/StHbtBaseAnalysis.h"
35 #include "StHbtMaker/Base/StHbtEventCut.h"
36 #include "StHbtMaker/Base/StHbtPairCut.h"
37 #include "StHbtMaker/Base/StHbtParticleCut.h"
38 #include "StHbtMaker/Base/StHbtTripletCut.h"
39 #include "StHbtMaker/Base/StHbtTrackCut.h"
40 #include "StHbtMaker/Base/StHbtV0Cut.h"
41 #include "StHbtMaker/Base/StHbtXiCut.h"
42 #include "StHbtMaker/Base/StHbtKinkCut.h"
43 
44 #ifdef __ROOT__
45  ClassImp(StHbtBaseAnalysis)
46  ClassImp(StHbtEventCut)
47  ClassImp(StHbtPairCut)
48  ClassImp(StHbtParticleCut)
49  ClassImp(StHbtTripletCut)
50  ClassImp(StHbtTrackCut)
51  ClassImp(StHbtV0Cut)
52  ClassImp(StHbtXiCut)
53  ClassImp(StHbtKinkCut)
54 #endif