FACT++  1.0
void DataWriteFits2::WriteHeader ( const RUN_HEAD h,
const FAD::RunDescription &  d 
)
private

Definition at line 27 of file DataWriteFits2.cc.

References RUN_HEAD::FADhead, fFile, fTriggerCounter, fTstart, fTstop, GetDrsStep(), DataProcessorImp::GetNight(), DataProcessorImp::GetRunId(), i, FITS::kFactHuffman16, FITS::kFactSmoothing, FITS::kOrderByRow, RUN_HEAD::NBoard, NBOARDS, NPIX, RUN_HEAD::NPix, RUN_HEAD::Nroi, RUN_HEAD::NroiTM, RUN_HEAD::NTm, NTMARK, RUN_HEAD::RunTime, RUN_HEAD::RunUsec, str, RUN_HEAD::Version, and WriteFooter().

Referenced by Open().

28 {
29  const int16_t realRoiTM = (h.NroiTM >= 2*h.Nroi && h.Nroi<=512) ? h.Nroi : 0;
30 
31  fFile->AddColumnInt("EventNum", "uint32", "FAD board event counter");
32  fFile->AddColumnInt("TriggerNum", "uint32", "FTM board trigger counter");
33  fFile->AddColumnShort("TriggerType", "uint16", "FTM board trigger type");
34  fFile->AddColumnInt("NumBoards", "uint32", "Number of connected boards");
35  fFile->AddColumnInt(2, "UnixTimeUTC", "uint32", "Unix time seconds and microseconds");
36  fFile->AddColumnInt(NBOARDS, "BoardTime", "uint32", "Board internal time counter");
37  fFile->AddColumnShort(NPIX, "StartCellData", "uint16", "DRS4 start cell of readout");
38  fFile->AddColumnShort(NTMARK, "StartCellTimeMarker", "uint16", "DRS4 start cell of readout time marker");
39 
40  vector<uint16_t> processing(2);
41  processing[0] = FITS::kFactSmoothing;
42  processing[1] = FITS::kFactHuffman16;
43 
44  const FITS::Compression comp(processing, FITS::kOrderByRow);
45 
46  fFile->AddColumnShort(comp, h.NPix*h.Nroi, "Data", "int16", "Digitized data");
47  fFile->AddColumnShort(comp, h.NTm*realRoiTM, "TimeMarker", "int16", "Digitized time marker - if available");
48 
49  const size_t sz = (h.NPix*h.Nroi + h.NTm*realRoiTM)*2;
50  if (fFile->GetBytesPerRow()-sz+4!=sizeof(EVENT))
51  {
52  ostringstream str;
53  str << "The EVENT structure size (" << sizeof(EVENT) << ") doesn't match the described FITS row (";
54  str << fFile->GetBytesPerRow()-sz+4 << ")";
55  throw runtime_error(str.str());
56  }
57 
58  // =============== Default keys for all files ================
59  fFile->SetDefaultKeys();
60  fFile->SetInt("NIGHT", GetNight(), "Night as int");
61 
62  // ================ Header keys for raw-data =================
63  fFile->SetInt("BLDVER", h.Version, "Builder version");
64  fFile->SetInt("RUNID", GetRunId(), "Run number");
65  fFile->SetInt("NBOARD", h.NBoard, "Number of acquisition boards");
66  fFile->SetInt("NPIX", h.NPix, "Number of pixels");
67  fFile->SetInt("NTMARK", h.NTm, "Number of time marker channels");
68  fFile->SetInt("NCELLS", 1024, "Maximum number of slices per pixels");
69  fFile->SetInt("NROI", h.Nroi, "Number of slices per pixels");
70  fFile->SetInt("NROITM", realRoiTM, "Number of slices per time-marker");
71 
72  const uint16_t realOffset = (h.NroiTM > h.Nroi) ? h.NroiTM - 2*h.Nroi : 0;
73  fFile->SetInt("TMSHIFT", realOffset, "Shift of marker readout w.r.t. to data");
74 
75  //FIXME should we also put the start and stop time of the received data ?
76  //now the events header related variables
77  fFile->SetStr("CAMERA", "MGeomCamFACT", "MARS camera geometry class");
78  fFile->SetStr("DAQ", "DRS4", "Data acquisition type");
79  fFile->SetInt("ADCRANGE", 2000, "Dynamic range in mV");
80  fFile->SetInt("ADC", 12, "Resolution in bits");
81  fFile->SetStr("RUNTYPE", d.name, "File type according to FAD configuration");
82 
83  // Write a single key for:
84  // -----------------------
85  // Start package flag
86  // package length
87  // version number
88  // status
89  // Prescaler
90 
91  // Write 40 keys for (?)
92  // Phaseshift
93  // DAC
94 
95  for (int i=0; i<h.NBoard; i++)
96  {
97  const PEVNT_HEADER &hh = h.FADhead[i];
98 
99  ostringstream sout;
100  sout << "Board " << setw(2) << i<< ": ";
101 
102  const string num = to_string(i);
103 
104  // Header values whihc won't change during the run
105  fFile->SetInt("ID"+num, hh.board_id, sout.str()+"Board ID");
106  fFile->SetInt("FWVER"+num, hh.version_no, sout.str()+"Firmware Version");
107  fFile->SetHex("DNA"+num, hh.DNA, sout.str()+"Unique FPGA device identifier (DNA)");
108  }
109 
110  // FIXME: Calculate average ref clock frequency
111  for (int i=0; i<h.NBoard; i++)
112  {
113  const PEVNT_HEADER &hh = h.FADhead[i];
114  if (hh.start_package_flag==0)
115  continue;
116 
117  fFile->SetInt("BOARD", i, "Board number for RUN, PRESC, PHASE and DAC");
118  fFile->SetInt("PRESC", hh.trigger_generator_prescaler, "Trigger generator prescaler");
119  fFile->SetInt("PHASE", (int16_t)hh.adc_clock_phase_shift, "ADC clock phase shift");
120 
121  for (int j=0; j<8; j++)
122  {
123  ostringstream dac, cmt;
124  dac << "DAC" << j;
125  cmt << "Command value for " << dac.str();
126  fFile->SetInt(dac.str(), hh.dac[j], cmt.str());
127  }
128 
129  break;
130  }
131 
132  double avg = 0;
133  int cnt = 0;
134  for (int i=0; i<h.NBoard; i++)
135  {
136  const PEVNT_HEADER &hh = h.FADhead[i];
137 
138  if (hh.start_package_flag==0)
139  continue;
140 
141  avg += hh.REFCLK_frequency;
142  cnt ++;
143  }
144 
145  // FIXME: I cannot write a double! WHY?
146  fFile->SetFloat("REFCLK", avg/cnt*2.048, "Average reference clock frequency in Hz");
147 
148  fFile->SetBool("DRSCALIB", GetDrsStep()>=0, "This file belongs to a DRS calibration");
149  if (GetDrsStep()>=0)
150  fFile->SetInt("DRSSTEP", GetDrsStep(), "Step of the DRS calibration");
151 
152  fTstart[0] = h.RunTime;
153  fTstart[1] = h.RunUsec;
154 
155  fTstop[0] = 0;
156  fTstop[1] = 0;
157 
158  fTriggerCounter.fill(0);
159 
160  WriteFooter();
161 
162  fFile->WriteTableHeader("Events");
163 };
uint32_t RunTime
Definition: FAD.h:96
uint16_t NroiTM
Definition: FAD.h:102
uint16_t NTm
Definition: FAD.h:100
int i
Definition: db_dim_client.c:21
char str[80]
Definition: test_client.c:7
uint32_t GetRunId() const
std::shared_ptr< ofits > fFile
uint32_t Version
Definition: FAD.h:94
std::array< uint32_t, 8 > fTriggerCounter
#define NPIX
Definition: BasicGlCamera.h:5
uint16_t Nroi
Definition: FAD.h:101
uint16_t NBoard
Definition: FAD.h:98
#define NTMARK
Definition: BasicGlCamera.h:6
uint32_t GetNight() const
virtual int GetDrsStep() const
#define NBOARDS
Definition: BasicGlCamera.h:4
uint32_t fTstop[2]
uint32_t RunUsec
Definition: FAD.h:97
uint16_t NPix
Definition: FAD.h:99
uint32_t fTstart[2]
PEVNT_HEADER FADhead[NBOARDS]
Definition: FAD.h:105

+ Here is the call graph for this function:

+ Here is the caller graph for this function: