]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/AliEmptyPreprocessor.cxx
Update Balance Function correction Maps (Alis Rodriguez Manso <alisrm@nikhef.nl>)
[u/mrichter/AliRoot.git] / SHUTTLE / AliEmptyPreprocessor.cxx
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
7 ClassImp(AliEmptyPreprocessor)
8
9 //______________________________________________________________________________________________
10 AliEmptyPreprocessor::AliEmptyPreprocessor(AliShuttleInterface* shuttle, const char* detector) :
11   AliPreprocessor(detector, shuttle)
12 {
13   // constructor
14 }
15
16 //______________________________________________________________________________________________
17 AliEmptyPreprocessor::~AliEmptyPreprocessor()
18 {
19   // destructor
20 }
21