File indexing completed on 2023-03-17 11:10:58
0001
0002 #ifndef jhugon_MultiplicityHistogramList_h
0003 #define jhugon_MultiplicityHistogramList_h
0004
0005 #include <vector>
0006 #include <string>
0007
0008
0009 #include "FWCore/Framework/interface/Frameworkfwd.h"
0010
0011 #include "FWCore/ServiceRegistry/interface/Service.h"
0012 #include "CommonTools/UtilAlgos/interface/TFileService.h"
0013 #include "L1Trigger/CSCTrackFinder/test/src/TFTrack.h"
0014
0015 #include <TCanvas.h>
0016
0017 #include <TStyle.h>
0018 #include <TLegend.h>
0019 #include <TF1.h>
0020 #include <TH2.h>
0021 #include <TH1F.h>
0022
0023 namespace csctf_analysis {
0024 class MultiplicityHistogramList {
0025 public:
0026 MultiplicityHistogramList();
0027
0028 void FillMultiplicityHist(std::vector<TFTrack> *);
0029
0030 TH1F *nTFTracks, *highestTFPt, *highestTFPtMed, *highestTFPtLow;
0031
0032 private:
0033 edm::Service<TFileService> fs;
0034 };
0035 }
0036 #endif