]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Obsolete code removed.
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 23 Nov 2011 09:04:50 +0000 (09:04 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 23 Nov 2011 09:04:50 +0000 (09:04 +0000)
JETAN/AliJetProductionDataPDC2004.cxx [deleted file]
JETAN/AliJetProductionDataPDC2004.h [deleted file]
JETAN/CMakelibJETAN.pkg
JETAN/JETANLinkDef.h

diff --git a/JETAN/AliJetProductionDataPDC2004.cxx b/JETAN/AliJetProductionDataPDC2004.cxx
deleted file mode 100644 (file)
index ac6c0ee..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/**************************************************************************
- * 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.                  *
- **************************************************************************/
-
-
-//---------------------------------------------------------------------
-// Service class for jet production data 
-// Author: Andreas Morsch
-// andreas.morsch@cern.ch
-//---------------------------------------------------------------------
-
-
-#include "AliJetProductionDataPDC2004.h"
-ClassImp(AliJetProductionDataPDC2004)
-////////////////////////////////////////////////////////////////////////
-
-AliJetProductionDataPDC2004::AliJetProductionDataPDC2004() 
-{
-  // Constructor
-    const Float_t kPthard[13] = 
-       {20., 24., 29., 35., 42., 50., 60., 72., 86., 104., 125., 150., 180.};
-
-    const TString kRunTitle[12] = 
-       {"20-24GeV",  "24-29GeV",   "29-35GeV",   "35-42GeV", "42-50GeV", "50-60GeV", "60-72GeV", "72-86GeV",
-        "86-104GeV", "104-125GeV", "125-150GeV", "150-180GeV"};
-    
-    const Float_t kXsection[12]  =
-       {1.10e-1, 6.00e-2, 2.00e-2, 1.16e-2, 5.33e-3, 2.68e-3, 1.22e-3, 5.26e-4, 2.53e-4, 1.00e-4, 4.44e-5, 1.84e-5};   
-
-    const Float_t kGeneratedOverSelected[12] = 
-       {2.67,   2.68,    2.47,    2.5,    2.3,    2.2,    2.1,    2.0,    1.9,    1.90,    1.7,    1.61};
-    
-           
-    fNbins     = 12;   
-    fPtHardLimits    = new Float_t[fNbins + 1];
-    fRunTitles       = new TString[fNbins];
-    fWeights         = new Float_t[fNbins];
-    Int_t i;
-    
-    for (i = 0; i < fNbins +1; i++) {
-       fPtHardLimits[i] = kPthard[i];
-    }
-
-    for (i = 0; i < fNbins; i++) {
-       fRunTitles[i] = kRunTitle[i];
-       fWeights[i]   = kXsection[i] /  kGeneratedOverSelected[i];
-    }
-} 
-
-////////////////////////////////////////////////////////////////////////
-
-AliJetProductionDataPDC2004::~AliJetProductionDataPDC2004()
-{
-  // Destructor
-}
diff --git a/JETAN/AliJetProductionDataPDC2004.h b/JETAN/AliJetProductionDataPDC2004.h
deleted file mode 100644 (file)
index 01caaa1..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef ALIJETPRODUCTIONDATAPDC2004_H
-#define ALIJETPRODUCTIONDATAPDC2004_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-//---------------------------------------------------------------------
-// Service class for jet production data
-// Physics Data Challenge 2004
-// Author: Andreas Morsch
-// andreas.morsch@cern.ch
-//---------------------------------------------------------------------
-#include <AliJetProductionData.h>
-class AliJetProductionDataPDC2004 : public AliJetProductionData
-{
- public:
-   AliJetProductionDataPDC2004();
-  ~AliJetProductionDataPDC2004();
- private:
-  ClassDef(AliJetProductionDataPDC2004, 1)
-};
-#endif
index 34273e8be3767044641c207f1e751b64a7384be3..997f60b92e8999423f3f21a7ed528187d2cf837d 100644 (file)
@@ -35,7 +35,6 @@ set ( SRCS
     AliJetESDReader.cxx 
     AliUA1JetHeader.cxx 
     AliJetProductionData.cxx 
-    AliJetProductionDataPDC2004.cxx 
     AliUA1JetFinderV1.cxx 
     AliUA1JetFinderV2.cxx 
     AliUA1JetHeaderV1.cxx 
index 5a18cd06bf689018da541c93903677252e3f1fda..b23754ce554c7550f391215372738eeca8b3b265 100644 (file)
@@ -12,7 +12,6 @@
 #pragma link C++ class AliJetReader+;
 #pragma link C++ class AliJetESDReader+;
 #pragma link C++ class AliJetProductionData+;
-#pragma link C++ class AliJetProductionDataPDC2004+;
 #pragma link C++ class AliUA1JetFinderV1+;
 #pragma link C++ class AliUA1JetFinderV2+;
 #pragma link C++ class AliUA1JetHeaderV1+;