MiniballSort
Loading...
Searching...
No Matches
mb_sort.hh
Go to the documentation of this file.
1#ifndef __MBSORT_HH
2# define __MBSORT_HH
3
4// ROOT include.
5#include <TTree.h>
6#include <TFile.h>
7#include <THttpServer.h>
8#include <TThread.h>
9#include <TGClient.h>
10#include <TApplication.h>
11#include <TCanvas.h>
12
13// C++ include.
14#include <iostream>
15#include <cstdio>
16#include <string>
17#include <vector>
18#include <sstream>
19#include <memory>
20#include <csignal>
21
22// Some compiler things
23#ifndef CURDIR
24# define CURDIR "./"
25#endif
26#ifndef AMEDIR
27# define AMEDIR "./data"
28#endif
29#ifndef SRIMDIR
30# define SRIMDIR "./srim"
31#endif
32
33Bool_t bRunMon = kTRUE;
34Bool_t bFirstRun = kTRUE;
35std::string curFileMon;
36
37
39void reset_conv_hists();
40void reset_evnt_hists();
41void reset_phys_hists();
42void stop_monitor();
43void start_monitor();
44
45#endif
void stop_monitor()
Definition mb_sort.cc:171
void reset_conv_hists()
Definition mb_sort.cc:159
void plot_physics_hists()
Bool_t bRunMon
Definition mb_sort.hh:33
std::string curFileMon
Definition mb_sort.hh:35
void reset_evnt_hists()
Definition mb_sort.cc:163
void start_monitor()
Definition mb_sort.cc:175
void reset_phys_hists()
Definition mb_sort.cc:167
Bool_t bFirstRun
Definition mb_sort.hh:34