]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGLF/FORWARD/analysis2/sim/DetConfig.C
Split: removed dirs now in AliPhysics
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / sim / DetConfig.C
diff --git a/PWGLF/FORWARD/analysis2/sim/DetConfig.C b/PWGLF/FORWARD/analysis2/sim/DetConfig.C
deleted file mode 100644 (file)
index 001a21c..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * @file   DetConfig.C
- * @author Christian Holm Christensen <cholm@nbi.dk>
- * @date   Wed Oct 15 13:19:34 2014
- * 
- * @brief  Particular setup of detectors to use. 
- * 
- * This is used by Simulate.C, Reconstruct.C, QA.C, and AOD.C
- */
-/** 
- * Particular set-up of detectors to use.  By default everything but
- * ACORDE is on.  Here, we turn off a few other detectors.
- */
-struct DetCfg : public VirtualDetCfg
-{
-  // virtual Bool_t UseEMCAL()  const { return false; }
-  // virtual Bool_t UseMUON()   const { return false; }
-  // virtual Bool_t UsePHOS()   const { return false; }
-  // virtual Bool_t UseHMPID()  const { return false; }
-  // virtual Bool_t UseTOF()    const { return false; }
-  // virtual Bool_t UseTRD()    const { return false; }
-};
-
-/** 
- * Create the detector configuration 
- * 
- * @return Pointer to global @c detCfg
- */
-void DetConfig()
-{
-  Info("DetConfig", "Creating detector configuration");
-  detCfg = new DetCfg;
-  detCfg->Print();
-}
-// 
-// EOF
-//
-