Skip to content

Commit

Permalink
Added missing cxx for AliVAODHeader
Browse files Browse the repository at this point in the history
CMake pkg file and linkdef changed accordingly.
  • Loading branch information
mfloris committed Sep 9, 2014
1 parent ec201cb commit cee20bb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion STEER/AOD/AliAODHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 1 addition & 0 deletions STEER/CMakelibSTEERBase.pkg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions STEER/STEERBase/AliVAODHeader.cxx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// We need the.cxx for the classimp and for CMake to compile the class
#include "AliVAODHeader.h"

ClassImp(AliVAODHeader);
1 change: 1 addition & 0 deletions STEER/STEERBaseLinkDef.h
Original file line number Diff line number Diff line change
Expand Up @@ -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+;
Expand Down

0 comments on commit cee20bb

Please sign in to comment.