]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLTANALYSIS/JET/analysis/AliHLTJETAnalysisBase.cxx
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / HLTANALYSIS / JET / analysis / AliHLTJETAnalysisBase.cxx
1 //-*- Mode: C++ -*-
2 //**************************************************************************
3 //* This file is property of and copyright by the ALICE HLT Project        * 
4 //* ALICE Experiment at CERN, All rights reserved.                         *
5 //*                                                                        *
6 //* Primary Authors: Jochen Thaeder <jochen@thaeder.de>                    *
7 //*                  for The ALICE HLT Project.                            *
8 //*                                                                        *
9 //* Permission to use, copy, modify and distribute this software and its   *
10 //* documentation strictly for non-commercial purposes is hereby granted   *
11 //* without fee, provided that the above copyright notice appears in all   *
12 //* copies and that both the copyright notice and this permission notice   *
13 //* appear in the supporting documentation. The authors make no claims     *
14 //* about the suitability of this software for any purpose. It is          *
15 //* provided "as is" without express or implied warranty.                  *
16 //**************************************************************************
17
18 /** @file   AliHLTJETAnalysisBase.cxx
19     @author Jochen Thaeder <jochen@thaeder.de>q
20     @brief  Base functionality for HLT JET analysis package
21 */
22
23 // see header file for class documentation
24 // or
25 // refer to README to build package
26 // or
27 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
28
29 #include "AliHLTJETAnalysisBase.h"
30
31 using namespace std;
32
33 /** ROOT macro for the implementation of ROOT specific class methods */
34 ClassImp(AliHLTJETAnalysisBase)
35
36 /*
37  * ---------------------------------------------------------------------------------
38  *                            Constructor / Destructor
39  * ---------------------------------------------------------------------------------
40  */
41
42 //##################################################################################
43   AliHLTJETAnalysisBase::AliHLTJETAnalysisBase() {
44   // see header file for class documentation
45   // or
46   // refer to README to build package
47   // or
48   // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
49 }
50
51
52 //##################################################################################
53 AliHLTJETAnalysisBase::~AliHLTJETAnalysisBase() {
54   // see header file for class documentation
55 }
56
57 /*
58  * ---------------------------------------------------------------------------------
59  *                              Initialize static const
60  * ---------------------------------------------------------------------------------
61  */
62
63 //##################################################################################
64 const Char_t *AliHLTJETAnalysisBase::fgkDeltaType[] = { 
65   "all", "leading", 
66   "Matched - all", "Matched - leading" 
67 };
68
69 //##################################################################################
70 const Char_t *AliHLTJETAnalysisBase::fgkSpectraType[] = { 
71   "Compare",       "Compare - Matched",       "Compare - UnMatched",
72   "Com Leading",   "Com Leading - Matched",   "Com Leading - UnMatched",
73   "Reconstructed", "Reconstructed - Matched", "Reconstructed - UnMatched",
74   "Reco Leading",  "Reco Leading - Matched",  "Reco Leading - UnMatched"
75 };
76
77 //##################################################################################
78 const Char_t *AliHLTJETAnalysisBase::fgkSpectraTypeMC[] = { 
79   "MC",        "MC - Matched",        "MC - UnMatched",
80   "MC Leading",        "MC Leading - Matched",        "MC Leading - UnMatched",
81   "Reconstructed", "Reconstructed - Matched", "Reconstructed - UnMatched",
82   "Reco Leading",  "Reco Leading - Matched",  "Reco Leading - UnMatched"
83 };
84
85 //##################################################################################
86 const Char_t *AliHLTJETAnalysisBase::fgkPlotType[] = { 
87   "all", "leading", 
88 };