#include "TClass.h"
#include "TStopwatch.h"
#include "AliHLTMemoryFile.h"
+#include <cassert>
/** ROOT macro for the implementation of ROOT specific class methods */
ClassImp(AliHLTComponent);
return GetFirstInputBlock(dt);
}
+const AliHLTComponentBlockData* AliHLTComponent::GetInputBlock(int index)
+{
+ // see header file for function documentation
+ ALIHLTCOMPONENT_BASE_STOPWATCH();
+ assert( 0 <= index and index < fCurrentEventData.fBlockCnt );
+ return &fpInputBlocks[index];
+}
+
const AliHLTComponentBlockData* AliHLTComponent::GetNextInputBlock()
{
// see header file for function documentation