]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/AliEmptyPreprocessor.cxx
SHUTTLE module
[u/mrichter/AliRoot.git] / SHUTTLE / AliEmptyPreprocessor.cxx
CommitLineData
4508ab8b 1#include "AliEmptyPreprocessor.h"
2
3// This preprocessor is used as a placeholder for non-existing preprocessors
4// during the FDR. Its task is just to fail, so that the run does not stay
5// in processing state forever.
6
7ClassImp(AliEmptyPreprocessor)
8
9//______________________________________________________________________________________________
10AliEmptyPreprocessor::AliEmptyPreprocessor(AliShuttleInterface* shuttle, const char* detector) :
11 AliPreprocessor(detector, shuttle)
12{
13 // constructor
14}
15
16//______________________________________________________________________________________________
17AliEmptyPreprocessor::~AliEmptyPreprocessor()
18{
19 // destructor
20}
21