]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDv0.cxx
This commit was generated by cvs2svn to compensate for changes in r1018,
[u/mrichter/AliRoot.git] / FMD / AliFMDv0.cxx
index 5009a424ce132bbf80542b57a4e8d12e4613c132..a8f428f81563ccc23e7f804a7f31f0bc046c615a 100644 (file)
@@ -1,3 +1,22 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+/*
+$Log$
+*/
+
 ///////////////////////////////////////////////////////////////////////////////
 //                                                                           //
 //  Forward Multiplicity Detector version 0                                  //
 #include "AliRun.h"
 #include "AliFMDv0.h"
 #include "AliMC.h"
+#include "stdlib.h"
  
 ClassImp(AliFMDv0)
  
 //_____________________________________________________________________________
-AliFMDv0::AliFMDv0() : AliFMD()
+AliFMDv0::AliFMDv0()
 {
   //
   // Default constructor for FMD version 0
@@ -38,6 +58,11 @@ AliFMDv0::AliFMDv0(const char *name, const char *title)
   //
   // Standard constructor for FMD version 0
   //
+  AliModule *start = gAlice->GetModule("START");
+  if(start) {
+    Error("ctor","This version of FMD is incompatible with START\n");
+    exit(1);
+  }
 }
  
 //___________________________________________