StHbtClassImp.cxx 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. #include "StHbtMaker/Base/StHbtBaseAnalysis.h"
  34. #include "StHbtMaker/Base/StHbtEventCut.h"
  35. #include "StHbtMaker/Base/StHbtPairCut.h"
  36. #include "StHbtMaker/Base/StHbtParticleCut.h"
  37. #include "StHbtMaker/Base/StHbtTripletCut.h"
  38. #include "StHbtMaker/Base/StHbtTrackCut.h"
  39. #include "StHbtMaker/Base/StHbtV0Cut.h"
  40. #include "StHbtMaker/Base/StHbtXiCut.h"
  41. #include "StHbtMaker/Base/StHbtKinkCut.h"
  42. #ifdef __ROOT__
  43. ClassImp(StHbtBaseAnalysis)
  44. ClassImp(StHbtEventCut)
  45. ClassImp(StHbtPairCut)
  46. ClassImp(StHbtParticleCut)
  47. ClassImp(StHbtTripletCut)
  48. ClassImp(StHbtTrackCut)
  49. ClassImp(StHbtV0Cut)
  50. ClassImp(StHbtXiCut)
  51. ClassImp(StHbtKinkCut)
  52. #endif