6 #include <TPaletteAxis.h>
48 int h1, h2, h3, h4, tb;
55 TCanvas* c1 =
new TCanvas(
"c1",
"", 600, 960);
56 c1->SetMargin(0.05, 0.15, 0.05, 0.05);
57 gStyle->SetOptStat(0);
58 gStyle->SetPalette(kRainBow);
60 TH2* h2_pa =
new TH2D(
"h2_pa",
"", 1,0,1, 1,0,1);
61 h2_pa->Fill(0.0, 0.0);
66 TPaletteAxis* pa = (TPaletteAxis*)h2_pa->GetListOfFunctions()->FindObject(
"palette");
68 const double DY = 16 + 2;
73 TH2* h2_fr =
new TH2D(
"h2_fr", oss.str().c_str(), 1, 0.7, 4.3, 1, -DY/2, DY/2);
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;
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;
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;
87 cout <<
"Max count of inter-station connections = " << cnt_max << endl;
89 cout <<
" cnt_max > m_cnt_max. Consider changing m_cnt_max." << endl;
103 c1->SaveAs(oss.str().c_str());
111 double cent1 = (plane==1 ? (23+1)/2.0 : (16+1)/2.0);
112 double cent2 = (16+1)/2.0;
113 double step1 = (plane==1 ? 0.7 : 1.0);
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];
122 line.SetLineColor(color);
123 line.DrawLine(plane, step1*(h1-cent1), plane+1, step2*(h2-cent2));
129 double cent = (n_ele + 1) / 2.0;
130 double step = st==1 ? 0.7 : 1.0;
132 marker.SetMarkerStyle(21);
133 for (
int ele = 1; ele <= n_ele; ele++) {
134 marker.DrawMarker(st, step * (ele - cent));
137 text.SetTextAlign(22);
138 text.DrawText(st, step * (1 - cent) - 0.5,
"1");
142 text.DrawText(st, step * (n_ele - cent) + 0.5, oss.str().c_str());
146 text.DrawText(st, y_label, oss.str().c_str());
151 double ele_cnt = (ele1 + ele2)/2.0;
153 marker.SetMarkerStyle(21);
154 for (
int ele = ele1; ele <= ele2; ele++) {
155 marker.DrawMarker(st, ele - ele_cnt);
160 text.SetTextAlign(22);
161 text.DrawText(st, ele1 - ele_cnt - 0.5, oss.str().c_str());
164 text.DrawText(st, ele2 - ele_cnt + 0.5, oss.str().c_str());
168 text.DrawText(st, -10.3, oss.str().c_str());
std::pair< int, int > PlaneConn_t
RoadMap m_road_map_neg_bot
void DrawElementV1(const int st, const int ele1, const int ele2)
void DrawOneSet(RoadMap *map)
void DrawElement(const int st, const int n_ele, const double y_label)
void DrawConnection(const PlaneConnCount_t *list_cnt, const int plane, const int count_max)
DrawRoadset(const std::string rs_id)
RoadMap m_road_map_pos_bot
std::map< PlaneConn_t, int > PlaneConnCount_t
RoadMap m_road_map_neg_top
RoadMap m_road_map_pos_top
void SetPNTB(const int pn, const int tb)
std::string GetPosNegStr() const
std::string GetTopBotStr() const
Class to hold a non-ordered set (i.e. map) of roads.
InfoMap::const_iterator ConstIter
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.