]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Added missing cxx for AliVAODHeader
authormfloris <michele.floris@cern.ch>
Tue, 9 Sep 2014 15:27:50 +0000 (17:27 +0200)
committerhristov <Peter.Hristov@cern.ch>
Mon, 27 Oct 2014 12:50:02 +0000 (13:50 +0100)
CMake pkg file and linkdef changed accordingly.

STEER/AOD/AliAODHeader.h
STEER/CMakelibSTEERBase.pkg
STEER/STEERBase/AliVAODHeader.cxx [new file with mode: 0644]
STEER/STEERBaseLinkDef.h

index f3d53f9cb386398136a38d5a4d428dfc8e10b83f..dd9fea4226ac9a3224db51a139c12b3b29dfa499 100644 (file)
@@ -263,7 +263,7 @@ class AliAODHeader : public AliVAODHeader {
   Float_t     fT0spread[kT0SpreadSize]; // spread of time distributions: (TOA+T0C/2), T0A, T0C, (T0A-T0C)/2
   TBits   fIRInt2InteractionsMap;  // map of the Int2 events (normally 0TVX) near the event, that's Int2Id-EventId in a -90 to 90 window
   TBits   fIRInt1InteractionsMap;  // map of the Int1 events (normally V0A&V0C) near the event, that's Int1Id-EventId in a -90 to 90 window
-  ClassDef(AliAODHeader, 24);
+  ClassDef(AliAODHeader, 25);
 };
 inline
 void AliAODHeader::SetCentrality(const AliCentrality* cent)      { 
index ea697ebd4be6bd132d7313743c82e120d2e8762f..dd2bf391ab805e8889477cc0c2f2cc8eff3dcaf7 100644 (file)
@@ -10,6 +10,7 @@ set ( SRCS
     STEERBase/AliVEvent.cxx 
     STEERBase/AliMixedEvent.cxx 
     STEERBase/AliVHeader.cxx 
+    STEERBase/AliVAODHeader.cxx 
     STEERBase/AliVEventHandler.cxx 
     STEERBase/AliVEventPool.cxx 
     STEERBase/AliVCuts.cxx 
diff --git a/STEER/STEERBase/AliVAODHeader.cxx b/STEER/STEERBase/AliVAODHeader.cxx
new file mode 100644 (file)
index 0000000..be50459
--- /dev/null
@@ -0,0 +1,4 @@
+// We need the.cxx for the classimp and for CMake to compile the class
+#include "AliVAODHeader.h"
+
+ClassImp(AliVAODHeader);
index a8a0d215fa54a6e1b31219165461c745aaab3b84..a3b1f248f622d1525b9ec201275607d81071671d 100644 (file)
@@ -17,6 +17,7 @@
 #pragma link C++ class AliVVertex+;
 #pragma link C++ class AliVEvent+;
 #pragma link C++ class AliVHeader+;
+#pragma link C++ class AliVAODHeader+;
 #pragma link C++ class AliVEventHandler+;
 #pragma link C++ class AliVEventPool+;
 #pragma link C++ class AliVCuts+;