CbmRoot
Loading...
Searching...
No Matches
CbmAnaJpsiHist.cxx
Go to the documentation of this file.
1/* Copyright (C) 2015-2016 UGiessen, JINR-LIT
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Semen Lebedev [committer], Adrian Amatus Weber */
4
5#include "CbmAnaJpsiHist.h"
6
7#include "TColor.h"
8
9#include <boost/assign/list_of.hpp>
10
11using boost::assign::list_of;
12using std::string;
13using std::vector;
14
15const vector<string> CbmAnaJpsiHist::fSourceTypes = list_of("signal")("bg")("pi0")("gamma");
16
17const vector<string> CbmAnaJpsiHist::fSourceTypesLatex = list_of("S")("BG")("#pi^{0}")("#gamma");
18
19const vector<int> CbmAnaJpsiHist::fSourceTypesColor = list_of(kRed)(kBlue)(kGreen)(kOrange);
20
21const vector<string> CbmAnaJpsiHist::fAnaSteps = list_of("mc")("acc")("reco")("chi2prim")("elid")("ptcut");
22
23const vector<string> CbmAnaJpsiHist::fAnaStepsLatex = list_of("MC")("ACC")("REC")("#chi^{2}_{prim}")("ID")("p_{t}");
24
25const vector<int> CbmAnaJpsiHist::fAnaStepsColor =
26 list_of(kGreen + 3)(kOrange + 3)(kBlack)(kOrange + 7)(kRed)(kPink - 6);
static const std::vector< std::string > fAnaStepsLatex
static const std::vector< std::string > fSourceTypes
static const std::vector< int > fAnaStepsColor
static const std::vector< std::string > fSourceTypesLatex
static const std::vector< std::string > fAnaSteps
static const std::vector< int > fSourceTypesColor