Class Reference for E1039 Core & Analysis Software
DrawRoadset.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <sstream>
3 #include <TStyle.h>
4 #include <TCanvas.h>
5 #include <TH2D.h>
6 #include <TPaletteAxis.h>
7 #include <TLine.h>
8 #include <TMarker.h>
9 #include <TText.h>
10 #include <UtilAna/UtilTrigger.h>
11 #include "RoadInfo.h"
12 #include "RoadMap.h"
13 #include "UtilRoad.h"
14 #include "DrawRoadset.h"
15 using namespace std;
16 
17 DrawRoadset::DrawRoadset(const std::string rs_id)
18  : AnaBase("draw_rs" + rs_id)
19  , m_rs_id(rs_id)
20  , m_cnt_max(20)
21 {
26 }
27 
29 {
30  ;
31 }
32 
34 {
39 }
40 
42 {
43  PlaneConnCount_t list_cnt_12;
44  PlaneConnCount_t list_cnt_23;
45  PlaneConnCount_t list_cnt_34;
46  for (RoadMap::ConstIter it = map->Begin(); it != map->End(); it++) {
47  int id = it->first;
48  int h1, h2, h3, h4, tb;
49  UtilTrigger::Road2Hodo(id, h1, h2, h3, h4, tb);
50  list_cnt_12[PlaneConn_t(h1, h2)]++;
51  list_cnt_23[PlaneConn_t(h2, h3)]++;
52  list_cnt_34[PlaneConn_t(h3, h4)]++;
53  }
54 
55  TCanvas* c1 = new TCanvas("c1", "", 600, 960);
56  c1->SetMargin(0.05, 0.15, 0.05, 0.05); // (l, r, b, t)
57  gStyle->SetOptStat(0);
58  gStyle->SetPalette(kRainBow);
59 
60  TH2* h2_pa = new TH2D("h2_pa", "", 1,0,1, 1,0,1);
61  h2_pa->Fill(0.0, 0.0); // "pa" will be null if "h2_pa" is empty!!
62  h2_pa->SetMinimum(0);
63  h2_pa->SetMaximum(m_cnt_max);
64  h2_pa->Draw("colz");
65  c1->Update();
66  TPaletteAxis* pa = (TPaletteAxis*)h2_pa->GetListOfFunctions()->FindObject("palette");
67 
68  const double DY = 16 + 2; // N of H234T paddles + margin
69 
70  ostringstream oss;
71  oss << "Roadset " << m_rs_id << " : " << map->GetPosNegStr() << " " << map->GetTopBotStr()
72  << ";Station;Paddle";
73  TH2* h2_fr = new TH2D("h2_fr", oss.str().c_str(), 1, 0.7, 4.3, 1, -DY/2, DY/2);
74  h2_fr->Draw("AH");
75  pa->Draw();
76 
77  int cnt_max = 0;
78  for (PlaneConnCount_t::const_iterator it = list_cnt_12.begin(); it != list_cnt_12.end(); it++) {
79  if (it->second > cnt_max) cnt_max = it->second;
80  }
81  for (PlaneConnCount_t::const_iterator it = list_cnt_23.begin(); it != list_cnt_23.end(); it++) {
82  if (it->second > cnt_max) cnt_max = it->second;
83  }
84  for (PlaneConnCount_t::const_iterator it = list_cnt_34.begin(); it != list_cnt_34.end(); it++) {
85  if (it->second > cnt_max) cnt_max = it->second;
86  }
87  cout << "Max count of inter-station connections = " << cnt_max << endl;
88  if (cnt_max > m_cnt_max) {
89  cout << " cnt_max > m_cnt_max. Consider changing m_cnt_max." << endl;
90  }
91 
92  DrawConnection(&list_cnt_12, 1, m_cnt_max);
93  DrawConnection(&list_cnt_23, 2, m_cnt_max);
94  DrawConnection(&list_cnt_34, 3, m_cnt_max);
95 
96  DrawElement(1, 23, -DY/2-0.5);
97  DrawElement(2, 16, -DY/2-0.5);
98  DrawElement(3, 16, -DY/2-0.5);
99  DrawElement(4, 16, -DY/2-0.5);
100 
101  oss.str("");
102  oss << m_dir_out << "/road_count_" << map->GetPosNegStr() << "_" << map->GetTopBotStr() << ".png";
103  c1->SaveAs(oss.str().c_str());
104  delete h2_fr;
105  delete h2_pa;
106  delete c1;
107 }
108 
109 void DrawRoadset::DrawConnection(const PlaneConnCount_t* list_cnt, const int plane, const int count_max)
110 {
111  double cent1 = (plane==1 ? (23+1)/2.0 : (16+1)/2.0);
112  double cent2 = (16+1)/2.0; // "plane+1" never be "1".
113  double step1 = (plane==1 ? 0.7 : 1.0);
114  double step2 = 1.0;
115 
116  for (PlaneConnCount_t::const_iterator it = list_cnt->begin(); it != list_cnt->end(); it++) {
117  int h1 = it->first.first;
118  int h2 = it->first.second;
119  int cnt = it->second;
120  int color = TColor::GetPalette()[254 * cnt / count_max];
121  TLine line;
122  line.SetLineColor(color);
123  line.DrawLine(plane, step1*(h1-cent1), plane+1, step2*(h2-cent2));
124  }
125 }
126 
127 void DrawRoadset::DrawElement(const int st, const int n_ele, const double y_label)
128 {
129  double cent = (n_ele + 1) / 2.0;
130  double step = st==1 ? 0.7 : 1.0;
131  TMarker marker;
132  marker.SetMarkerStyle(21);
133  for (int ele = 1; ele <= n_ele; ele++) {
134  marker.DrawMarker(st, step * (ele - cent));
135  }
136  TText text;
137  text.SetTextAlign(22); // center center
138  text.DrawText(st, step * (1 - cent) - 0.5, "1");
139 
140  ostringstream oss;
141  oss << n_ele;
142  text.DrawText(st, step * (n_ele - cent) + 0.5, oss.str().c_str());
143 
144  oss.str("");
145  oss << "St." << st;
146  text.DrawText(st, y_label, oss.str().c_str());
147 }
148 
149 void DrawRoadset::DrawElementV1(const int st, const int ele1, const int ele2)
150 {
151  double ele_cnt = (ele1 + ele2)/2.0;
152  TMarker marker;
153  marker.SetMarkerStyle(21);
154  for (int ele = ele1; ele <= ele2; ele++) {
155  marker.DrawMarker(st, ele - ele_cnt);
156  }
157  ostringstream oss;
158  oss << ele1;
159  TText text;
160  text.SetTextAlign(22); // center center
161  text.DrawText(st, ele1 - ele_cnt - 0.5, oss.str().c_str());
162  oss.str("");
163  oss << ele2;
164  text.DrawText(st, ele2 - ele_cnt + 0.5, oss.str().c_str());
165 
166  oss.str("");
167  oss << "St." << st;
168  text.DrawText(st, -10.3, oss.str().c_str());
169 }
Definition: AnaBase.h:6
std::string m_dir_out
Definition: AnaBase.h:11
std::string m_rs_id
Definition: DrawRoadset.h:12
std::pair< int, int > PlaneConn_t
Definition: DrawRoadset.h:9
void Draw()
Definition: DrawRoadset.cc:33
RoadMap m_road_map_neg_bot
Definition: DrawRoadset.h:17
void DrawElementV1(const int st, const int ele1, const int ele2)
Definition: DrawRoadset.cc:149
void DrawOneSet(RoadMap *map)
Definition: DrawRoadset.cc:41
void DrawElement(const int st, const int n_ele, const double y_label)
Definition: DrawRoadset.cc:127
double m_cnt_max
Definition: DrawRoadset.h:13
virtual ~DrawRoadset()
Definition: DrawRoadset.cc:28
void DrawConnection(const PlaneConnCount_t *list_cnt, const int plane, const int count_max)
Definition: DrawRoadset.cc:109
DrawRoadset(const std::string rs_id)
Definition: DrawRoadset.cc:17
RoadMap m_road_map_pos_bot
Definition: DrawRoadset.h:15
std::map< PlaneConn_t, int > PlaneConnCount_t
Definition: DrawRoadset.h:10
RoadMap m_road_map_neg_top
Definition: DrawRoadset.h:16
RoadMap m_road_map_pos_top
Definition: DrawRoadset.h:14
void SetPNTB(const int pn, const int tb)
Definition: RoadListBase.h:17
std::string GetPosNegStr() const
Definition: RoadListBase.h:22
std::string GetTopBotStr() const
Definition: RoadListBase.h:23
Class to hold a non-ordered set (i.e. map) of roads.
Definition: RoadMap.h:8
InfoMap::const_iterator ConstIter
Definition: RoadMap.h:14
ConstIter End() const
Definition: RoadMap.h:21
ConstIter Begin() const
Definition: RoadMap.h:20
void Road2Hodo(const int road, int &h1, int &h2, int &h3, int &h4, int &tb)
Convert a roadset ID to a set of hodo IDs.
Definition: UtilTrigger.cc:19