7 gSystem->mkdir(
"result",
true);
27 TTimeStamp ts0(2024, 2, 11, 18, 0, 0);
29 int utime0 = ts0.GetSec() + TTimeStamp::GetZoneOffset();
34 TGraph* gr_first =
new TGraph();
35 TGraph* gr_last =
new TGraph();
36 TGraph* gr_diff =
new TGraph();
40 for (
int i_evt = 0; i_evt < n_evt; i_evt++) {
42 int evt_num = evt->
GetInt(
"EventNum");
43 int n_pt = evt->
GetInt(
"ScanSteps");
44 if (utime0 == 0) utime0 = evt_num;
45 if (evt_num < utime0)
continue;
50 double hour = (evt_num - utime0) / 3600.0;
51 gr_first->SetPoint(gr_first->GetN(), hour, val0);
52 gr_last ->SetPoint(gr_last ->GetN(), hour, val1);
53 gr_diff ->SetPoint(gr_diff ->GetN(), hour, val0 - val1);
59 TCanvas* c1 =
new TCanvas(
"c1",
"", 1600, 600);
61 c1->SetMargin(0.05, 0.05, 0.1, 0.1);
62 TGaxis::SetMaxDigits(3);
64 gr_last ->SetMarkerStyle(7);
65 gr_last ->SetMarkerColor(kBlue);
66 gr_first->SetMarkerStyle(7);
67 gr_first->SetMarkerColor(kRed);
69 TMultiGraph* mg =
new TMultiGraph();
71 mg->SetTitle((
";" + title_x +
";RawSignal").c_str());
72 mg->Add(gr_first,
"P");
73 mg->Add(gr_last ,
"P");
75 mg->GetYaxis()->SetTitleOffset(0.6);
77 TLegend* leg =
new TLegend(0.85, 0.90, 0.99, 0.99);
78 leg->AddEntry(gr_first,
"First point",
"p");
79 leg->AddEntry(gr_last ,
"Last point",
"p");
82 c1->SaveAs(
"result/gr_voltage_vs_time.png");
84 gr_diff->SetTitle((
";" + title_x +
";V_{First} - V_{Last}").c_str());
85 gr_diff->GetYaxis()->SetTitleOffset(0.6);
86 gr_diff->SetMarkerStyle(7);
87 gr_diff->SetMarkerColor(kRed);
89 c1->SaveAs(
"result/gr_diff_vs_time.png");
void ana_NMR_raw_signal()
void ReadEventFile(const std::string label)
void GetScanParam(int &ScanSweeps, int &ScanSteps, double &RFFreq, double &RFMod)
void Verb(const int verb)
NMREvent * GetEvent(const int index)
NMRSignal * GetRawSignal(const int evt_num)
int GetInt(const int idx)
double GetPoint(const int idx)
void ConvEventNum(const int event_num, int &YYYY, int &MM, int &DD, int &hh, int &mm, int &ss)