AliPhysics  bba8f44 (bba8f44)
AliDJetTTreeReader.h
Go to the documentation of this file.
1 
16 #ifndef ALIDJETTTREEREADER_H
17 #define ALIDJETTTREEREADER_H
18 
19 /* Copyright(c) 1998-2017, ALICE Experiment at CERN, All rights reserved. *
20  * See cxx source for full Copyright notice */
21 
22 #include <vector>
23 #include <string>
24 #include <TString.h>
25 
26 #include "AliDJetVReader.h"
27 
28 class TChain;
29 
38 
39 public:
42  virtual ~AliDJetTTreeReader();
43 
44  void SetInputTreename(TString treename) { fTreeName = treename ; }
45  void SetInputDBranchname(TString dname) { fDBranchName = dname ; }
46  void SetInputJetBranchname(TString jetname) { fJetBranchName = jetname ; }
47  void AddInputFileName(std::string filename) { fInputFileNames.push_back(filename);}
48  void SetMassEdgesAndBinWidthForMassPlot(Double_t mmin, Double_t mmax, Double_t mbinwidth) { fmassmin = mmin; fmassmax = mmax; fmasswidth = mbinwidth; }
49 
51 
54 
55 protected:
56 
57  std::vector<std::string> fInputFileNames ;
64 
65 private:
66  ClassDef(AliDJetTTreeReader,1);
67 };
68 
69 #endif
const char * filename
Definition: TestFCM.C:1
void SetInputJetBranchname(TString jetname)
double Double_t
Definition: External.C:58
void SetInputDBranchname(TString dname)
std::vector< std::string > fInputFileNames
Name of input file.
Implementation of an abstract class to read the invariant mass histograms used to extract the raw yie...
Double_t fmassmin
Mass lower edge of inv.mass plots.
TString fDBranchName
Name of input branch for D meson.
Double_t fmasswidth
Mass plots bin width.
void SetInputTreename(TString treename)
TString fTreeName
Name of input TTree.
Bool_t ExtractInputMassPlotEffScale()
Declaration of class AliDJetVReader.
void SetMassEdgesAndBinWidthForMassPlot(Double_t mmin, Double_t mmax, Double_t mbinwidth)
Implementation of an abstract class to read the invariant mass histograms used to extract the raw yie...
TString fJetBranchName
Name of input branch for jet.
Double_t fmassmax
Mass upper edge of inv.mass plots.
bool Bool_t
Definition: External.C:53
void AddInputFileName(std::string filename)