Class Reference for E1039 Core & Analysis Software
ana_NMR_noise.cc
Go to the documentation of this file.
1 #include "NMRDataManager.h"
2 void DrawPolySignal(TH2* h2_vt, const int i_evt_b, const int i_evt_e, const int time_b, const int time_e);
3 
4 void ana_NMR_noise(const bool draw_h2=true)
5 {
6  NMRDataManager man;
7  man.Verb(0); // 0 = silent, 1 = some, 2 = every event
8  gSystem->mkdir("result", true);
9 
13  //man.ReadEventFile("2024-02-10_18h41m29s");
14  //man.ReadEventFile("2024-02-11_17h36m11s");
15  //man.ReadEventFile("2024-02-12_16h05m57s");
16  //man.ReadEventFile("2024-02-13_19h58m19s");
17  //man.ReadEventFile("2024-02-15_00h14m46s");
18  //man.ReadEventFile("2024-02-15_23h59m43s");
19  //man.ReadEventFile("2024-02-16_15h14m39s");
20  //man.ReadEventFile("2024-02-17_00h02m47s");
21  //man.ReadEventFile("2024-02-18_00h06m15s");
22  //man.ReadEventFile("2024-02-18_23h59m05s");
23  //man.ReadEventFile("2024-02-19_23h24m05s");
24  //man.ReadEventFile("2024-02-20_10h35m43s");
25 
26  //man.ReadEventFile("2024-01-30_19h32m03s"); // TE meas. elog 910
27  //man.ReadEventFile("2024-01-30_19h48m56s"); // TE meas. elog 911
28 
29  //man.ReadEventFile("2024-02-20_21h35m12s"); // Started using the chiller.
30  //man.ReadEventFile("2024-02-21_09h46m33s");
31  //man.ReadEventFile("2024-02-22_19h23m45s");
32  //man.ReadEventFile("2024-02-25_10h31m57s");
33  //man.ReadEventFile("2024-02-27_13h53m42s");
34  //man.ReadEventFile("2024-03-01_09h42m01s");
35  //man.ReadEventFile("2024-03-02_00h07m09s");
36  //man.ReadEventFile("2024-03-03_16h12m59s");
37  //man.ReadEventFile("2024-03-05_10h20m14s");
38  //man.ReadEventFile("2024-03-06_09h45m34s");
39  //man.ReadEventFile("2024-03-06_14h59m06s");
40  //man.ReadEventFile("2024-03-06_17h37m35s");
41  //man.ReadEventFile("2024-03-07_12h04m04s");
42  //man.ReadEventFile("2024-03-09_10h08m20s");
43 
44  man.ReadEventFile("2024-03-15_12h21m39s");
45  man.ReadEventFile("2024-03-15_13h04m48s");
46 
47  int ScanSweeps; // N of sweeps per measurement
48  int ScanSteps; // N of frequency steps per scan
49  double RFFreq; // Center frequency in MHz
50  double RFMod; // Half width of frequency range in kHz
51  man.GetScanParam(ScanSweeps, ScanSteps, RFFreq, RFMod);
52  RFMod /= 1000; // kHz -> MHz
53 
57  //TTimeStamp ts0(2024, 2, 9, 0, 0, 0); // For all files
58  //TTimeStamp ts0(2024, 2, 9, 18, 0, 0); // For "2024-02-10_18h41m29s"
59  //TTimeStamp ts0(2024, 2, 10, 18, 0, 0); // For "2024-02-11_17h36m11s"
60  //TTimeStamp ts0(2024, 2, 11, 18, 0, 0); // For "2024-02-12_16h05m57s"
61  //TTimeStamp ts0(2024, 2, 12, 18, 0, 0); // For "2024-02-13_19h58m19s"
62  //TTimeStamp ts0(2024, 2, 14, 0, 0, 0); // For "2024-02-15_00h14m46s"
63  //TTimeStamp ts0(2024, 2, 15, 0, 0, 0); // For "2024-02-15_23h59m43s"
64  //TTimeStamp ts0(2024, 2, 16, 0, 0, 0); // For "2024-02-16_15h14m39s" & "2024-02-17_00h02m47s"
65  //TTimeStamp ts0(2024, 2, 17, 0, 0, 0); // For "2024-02-18_00h06m15s"
66  //TTimeStamp ts0(2024, 2, 18, 0, 0, 0); // For "2024-02-18_23h59m05s"
67  //TTimeStamp ts0(2024, 2, 20, 0, 0, 0); // For "2024-02-20_21h35m12s"
68  TTimeStamp ts0(2024, 3, 15, 0, 0, 0); // For "2024-03-15_12h21m39s"
69  int utime0 = ts0.GetSec() + TTimeStamp::GetZoneOffset();
70 
74  double RF_lo = RFFreq - RFMod;
75  double RF_hi = RFFreq + RFMod;
76  double sig_min, sig_max;
77  man.GetPolySignalRange(sig_min, sig_max);
78  TH2* h2_vt = new TH2D("h2_vt", "", ScanSteps, RF_lo, RF_hi, 100, sig_min, sig_max);
79  TGraphErrors* gr_noise = new TGraphErrors();
80 
81  const int n_draw_step = 50; // h2_vt is drawn every "n_draw_step" events.
82  int i_evt_draw = -1;
83  int utime_draw;
84 
85  int n_evt = man.GetNumEvent();
86  int i_evt_ok = 0;
87  for (int i_evt = 0; i_evt < n_evt; i_evt++) {
88  NMREvent* evt = man.GetEvent(i_evt);
89  int evt_num = evt->GetInt("EventNum");
90  if (utime0 == 0) utime0 = evt_num;
91  if (evt_num < utime0) continue;
92  NMRSignal* sig = man.GetPolySignal(evt_num);
93  if (sig->GetNumPoint() != ScanSteps) continue;
94  i_evt_ok++;
95 
96  if (i_evt_draw < 0) {
97  i_evt_draw = i_evt_ok;
98  utime_draw = evt_num;
99  }
100 
101  for (int ii = 0; ii < ScanSteps; ii++) {
102  double rf = RF_lo + 2.0 * RFMod / (ScanSteps - 1) * ii;
103  h2_vt->Fill(rf, sig->GetPoint(ii));
104  }
105  if ((i_evt_ok + 1) % n_draw_step == 0 ||
106  i_evt == n_evt - 1) {
107  if (draw_h2) DrawPolySignal(h2_vt, i_evt_draw, i_evt_ok, utime_draw-utime0, evt_num-utime0);
108 
109  TH1* h1_lo = h2_vt->ProjectionY("h1_lo", 1, ScanSteps/10);
110  TH1* h1_hi = h2_vt->ProjectionY("h1_hi", ScanSteps*9/10, ScanSteps );
111  h1_lo->Add(h1_hi);
112  double rms = h1_lo->GetRMS();
113  double rms_err = h1_lo->GetRMSError();
114  int n_gr_pt = gr_noise->GetN();
115  double time = evt_num/2.0 + utime_draw/2.0 - utime0;
116  double time_err = (evt_num - utime_draw) / 2.0;
117  gr_noise->SetPoint (n_gr_pt, time /3600, rms );
118  gr_noise->SetPointError(n_gr_pt, time_err/3600, rms_err);
119  delete h1_lo;
120  delete h1_hi;
121 
122  i_evt_draw = -1;
123  h2_vt->Reset();
124  }
125  }
126 
130  TCanvas* c1 = new TCanvas("c1", "", 3200, 600);
131  //TCanvas* c1 = new TCanvas("c1", "");
132  c1->SetGrid(true);
133  c1->SetMargin(0.03, 0.03, 0.1, 0.1); // (l, r, b, t)
134  gStyle->SetOptStat(0);
135  TGaxis::SetMaxDigits(4);
136 
137  gr_noise->SetTitle((";Hours since " + NMRUtil::ConvEventNum(utime0) + ";Std. dev. of PolySignal outer regions").c_str());
138 // gr_noise->GetYaxis()->SetTitleOffset(0.4);
139  gr_noise->SetMarkerStyle(7);
140  gr_noise->SetMarkerColor(kRed);
141  gr_noise->SetLineColor (kRed);
142  gr_noise->Draw("AP");
143 
144  c1->SaveAs("result/gr_noise.png");
145  delete c1;
146  exit(0);
147 }
148 
149 void DrawPolySignal(TH2* h2_vt, const int i_evt_b, const int i_evt_e, const int time_b, const int time_e)
150 {
151  TCanvas* c1 = new TCanvas("c1", "");
152  c1->SetGrid(true);
153  gStyle->SetOptStat(0);
154  TGaxis::SetMaxDigits(4);
155 
156  ostringstream oss;
157  oss << "Data #" << i_evt_b << "-" << i_evt_e << " ("
158  << fixed << setprecision(2) << time_b/3600.0 << "-" << time_e/3600.0
159  << " hours);Frequency;PolySignal";
160  h2_vt->SetTitle(oss.str().c_str());
161  h2_vt->Draw("colz");
162  //h2_vt->GetYaxis()->SetRangeUser(-1.5e-3, 0.5e-3);
163  oss.str("");
164  oss << setfill('0') << "result/h2_vt_" << setw(6) << i_evt_b << ".png";
165  c1->SaveAs(oss.str().c_str());
166  delete c1;
167 }
void ana_NMR_noise(const bool draw_h2=true)
Definition: ana_NMR_noise.cc:4
void DrawPolySignal(TH2 *h2_vt, const int i_evt_b, const int i_evt_e, const int time_b, const int time_e)
NMRSignal * GetPolySignal(const int evt_num)
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)
void GetPolySignalRange(double &min, double &max)
int GetInt(const int idx)
Definition: NMREvent.h:23
double GetPoint(const int idx)
Definition: NMRSignal.h:15
int GetNumPoint()
Definition: NMRSignal.h:14
void ConvEventNum(const int event_num, int &YYYY, int &MM, int &DD, int &hh, int &mm, int &ss)
Definition: NMRUtil.h:6