source: trunk/FACT++/src/DataWriteFits.h@ 12615

Last change on this file since 12615 was 12605, checked in by tbretz, 13 years ago
Implemented counters for the different trigger types and time of first and last event.
File size: 817 bytes
Line 
1#ifndef FACT_DataWriteFits
2#define FACT_DataWriteFits
3
4#include "DataProcessorImp.h"
5#include "FitsFile.h"
6
7#include <array>
8
9class Converter;
10
11class DataWriteFits : public DataProcessorImp
12{
13 Converter *fConv;
14
15 FitsFile fFile;
16
17 std::array<uint32_t, 8> fTriggerCounter;
18
19 uint32_t fTstart[2];
20 uint32_t fTstop[2];
21
22 template <typename T>
23 void WriteKey(const string &name, const int idx, const T &value, const string &comment);
24
25 bool WriteFooter(RUN_TAIL *rt);
26
27public:
28 DataWriteFits(const std::string path, uint32_t runid, MessageImp &imp) :
29 DataProcessorImp(path, runid, imp), fConv(0), fFile(imp)
30 {
31 }
32
33 ~DataWriteFits();
34
35 bool Open(const RUN_HEAD* h, const FAD::RunDescription &d);
36 bool WriteEvt(EVENT *e);
37 bool Close(RUN_TAIL *rt = 0);
38};
39
40#endif
Note: See TracBrowser for help on using the repository browser.