Class Reference for E1039 Core & Analysis Software
ReAnaBG.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 #include <iomanip>
4 #include <TROOT.h>
5 #include <TFile.h>
6 #include <TTree.h>
7 #include <TSystem.h>
8 #include <TStyle.h>
9 #include <TCanvas.h>
10 #include <THStack.h>
11 #include <TLegend.h>
12 #include <TH1D.h>
13 #include <UtilAna/UtilTrigger.h>
14 #include "RoadMap.h"
15 #include "RoadList.h"
16 #include "UtilRoad.h"
17 #include "ReAnaBG.h"
18 using namespace std;
19 
20 ReAnaBG::ReAnaBG(const std::string label)
21  : AnaBG(label)
22 {
23  ;
24 }
25 
27 {
28  ;
29 }
30 
32 {
33  if (!m_road_map_pos_top) {
34  cout << "AnaBG::Init(): ERROR No road given. Abort." << endl;
35  exit(1);
36  }
37 }
38 
40 {
41  ;
42 }
43 
45 {
46  //int run = m_bg_data->run;
47  //int evt = m_bg_data->evt;
48  //bool fpga1 = m_bg_data->fpga1;
49  //int inte_rfp00 = m_bg_data->inte_rfp00;
50  int inte_max = m_bg_data->inte_max;
51  EleList* h1t = &m_bg_data->h1t;
52  EleList* h2t = &m_bg_data->h2t;
53  EleList* h3t = &m_bg_data->h3t;
54  EleList* h4t = &m_bg_data->h4t;
55  EleList* h1b = &m_bg_data->h1b;
56  EleList* h2b = &m_bg_data->h2b;
57  EleList* h3b = &m_bg_data->h3b;
58  EleList* h4b = &m_bg_data->h4b;
59 
60  if (inte_max == 0) return; // Some readout error
61  m_n_evt_used++;
62 
63  if (m_inte_cut > 0 && inte_max >= m_inte_cut) return;
64  if (h1t->size() == 0 || h1b->size() == 0 ||
65  h2t->size() == 0 || h2b->size() == 0 ||
66  h3t->size() == 0 || h3b->size() == 0 ||
67  h4t->size() == 0 || h4b->size() == 0 ) return;
68  m_n_evt_tb++;
69 
70  RoadMap map_top;
71  RoadMap map_bot;
72  FindAllRoads(h1t, h2t, h3t, h4t, +1, &map_top);
73  FindAllRoads(h1b, h2b, h3b, h4b, -1, &map_bot);
74 
75  if ((map_top.ContainEnabled(m_road_map_pos_top) &&
76  map_bot.ContainEnabled(m_road_map_neg_bot) ) || // T+B ||
78  map_bot.ContainEnabled(m_road_map_pos_bot) )) { // B+T
79  m_n_evt_fired++;
80 
81  m_road_map_top.AddBG(&map_top);
82  m_road_map_bot.AddBG(&map_bot);
83  }
84 }
85 
87 {
88  cout << "ReAnaBG::Analyze():" << endl;
89 
90  m_ofs << "Event Counts:\n"
91  << "N of analyzed events:\n"
92  << " Used " << m_n_evt_used << "\n"
93  << " T+B " << m_n_evt_tb << "\n"
94  << " Fired " << m_n_evt_fired << "\n \n"
95  << "Expected counts per spill:\n"
96  << " T+B " << N_RF_PER_SPILL * m_n_evt_tb / m_n_evt_used << "\n"
97  << " Fired " << N_RF_PER_SPILL * m_n_evt_fired / m_n_evt_used << "\n"
98  << endl;
99 
100  RoadList road_list_top;
101  RoadList road_list_bot;
102  road_list_top.Add(&m_road_map_top);
103  road_list_bot.Add(&m_road_map_bot);
104  road_list_top.SortByBG();
105  road_list_bot.SortByBG();
106  m_ofs << " N of fired roads @ Top: " << road_list_top.Size() << endl
107  << " N of fired roads @ Bot: " << road_list_bot.Size() << endl
108  << endl;
109 
110  m_ofs << "Top: First Five\n";
111  UtilRoad::PrintList(&road_list_top, +1, +5, m_ofs);
112  m_ofs << " Last Five\n";
113  UtilRoad::PrintList(&road_list_top, -5, -1, m_ofs);
114  m_ofs << "Bot: First Five\n";
115  UtilRoad::PrintList(&road_list_bot, +1, +5, m_ofs);
116  m_ofs << " Last Five\n";
117  UtilRoad::PrintList(&road_list_bot, -5, -1, m_ofs);
118 }
Definition: AnaBG.h:12
int m_n_evt_used
Definition: AnaBG.h:21
RoadMap * m_road_map_pos_bot
Definition: AnaBG.h:26
std::vector< int > EleList
Definition: AnaBG.h:19
int m_n_evt_fired
Definition: AnaBG.h:23
RoadMap * m_road_map_neg_bot
Definition: AnaBG.h:28
RoadMap * m_road_map_neg_top
Definition: AnaBG.h:27
static constexpr double N_RF_PER_SPILL
N of RFs per spill.
Definition: AnaBG.h:18
BgData * m_bg_data
Definition: AnaBG.h:33
int m_n_evt_tb
Definition: AnaBG.h:22
RoadMap * m_road_map_pos_top
Definition: AnaBG.h:25
int m_inte_cut
Definition: AnaBG.h:45
void FindAllRoads(const EleList *h1, const EleList *h2, const EleList *h3, const EleList *h4, const int tb, RoadMap *road_map)
Definition: AnaBG.cc:217
std::ofstream m_ofs
Definition: AnaBase.h:12
virtual void Analyze()
Definition: ReAnaBG.cc:86
RoadMap m_road_map_top
Definition: ReAnaBG.h:7
virtual void ProcessOneEvent()
Definition: ReAnaBG.cc:44
virtual ~ReAnaBG()
Definition: ReAnaBG.cc:26
virtual void End()
Definition: ReAnaBG.cc:39
ReAnaBG(const std::string label="re_ana_bg")
Definition: ReAnaBG.cc:20
virtual void Init()
Definition: ReAnaBG.cc:31
RoadMap m_road_map_bot
Definition: ReAnaBG.h:8
Class to hold an ordered set (i.e. vector) of roads.
Definition: RoadList.h:9
void SortByBG()
Definition: RoadList.cc:36
int Size() const
Definition: RoadList.h:17
void Add(RoadInfo *info)
Definition: RoadList.cc:19
Class to hold a non-ordered set (i.e. map) of roads.
Definition: RoadMap.h:8
bool ContainEnabled(const RoadMap *map) const
Definition: RoadMap.cc:34
void AddBG(const int road, const double weight, const int count=1)
Definition: RoadMap.cc:69
void PrintList(RoadList *road_list, int i_begin=0, int i_end=0, std::ostream &os=std::cout)
Definition: UtilRoad.cc:25
std::vector< int > h1t
Definition: TreeData.h:33
int inte_max
Definition: TreeData.h:32
std::vector< int > h1b
Definition: TreeData.h:37
std::vector< int > h2t
Definition: TreeData.h:34
std::vector< int > h4b
Definition: TreeData.h:40
std::vector< int > h2b
Definition: TreeData.h:38
std::vector< int > h4t
Definition: TreeData.h:36
std::vector< int > h3t
Definition: TreeData.h:35
std::vector< int > h3b
Definition: TreeData.h:39