// //
///////////////////////////////////////////////////////////////////////////////
+#include <stdlib.h>
+
#include "AliRun.h"
#include "AliFMDv1.h"
#include "AliMC.h"
ClassImp(AliFMDv1)
//_____________________________________________________________________________
-AliFMDv1::AliFMDv1() : AliFMD()
+AliFMDv1::AliFMDv1()
{
//
// Defautl constructor for FMD version 1
//
// Standard constructor for FMD version 1
//
+ AliModule *start = gAlice->GetModule("START");
+ if(start) {
+ Error("ctor","This version of FMD is incompatible with START\n");
+ exit(1);
+ }
}
//_____________________________________________________________________________