GCC Code Coverage Report


Directory: ./
File: src/event/data/f1-hdql.cc
Date: 2025-09-01 06:19:01
Exec Total Coverage
Lines: 16 16 100.0%
Functions: 1 1 100.0%
Branches: 12 12 100.0%

Line Branch Exec Source
1 #include "na64event/hdql-augments.hh"
2
3 #if defined(hdql_FOUND) && hdql_FOUND
4
5 #include "na64event/data/event.hh"
6 #include "na64event/hdql-augments.hh"
7
8 /**\file
9 * \brief HDQL interfaces for RawDataF1, F1Hit.
10 *
11 * \warning This is a file generated for event's data structure integrating
12 * with HDQL.
13 * \note Generated at 14/08/2025 23:52:56 with template utils/evstruct/templates/cpp/impl-hdql.cc
14 * \version 0.1
15 */
16
17 namespace na64dp {
18 namespace event {
19
20 void
21 9 define_f1_hdql_compounds( ::hdql::helpers::CompoundTypes & types
22 , hdql_Context * context
23 ) {
24
1/1
✓ Branch 1 taken 9 times.
9 types.new_compound<RawDataF1>("RawDataF1")
25
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::sourceID>("sourceID")
26
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::portID>("portID")
27
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::channel>("channel")
28
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::channelPosition>("channelPosition")
29
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::time>("time")
30
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::timeUnit>("timeUnit")
31
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::timeDecoded>("timeDecoded")
32
1/1
✓ Branch 1 taken 9 times.
9 .attr<&RawDataF1::timeReference>("timeReference")
33 9 .end_compound();
34
1/1
✓ Branch 1 taken 9 times.
9 types.new_compound<F1Hit>("F1Hit")
35
1/1
✓ Branch 1 taken 9 times.
9 .attr<&F1Hit::rawData>("rawData")
36
1/1
✓ Branch 1 taken 9 times.
9 .attr<&F1Hit::hitPosition>("hitPosition")
37 9 .end_compound();
38 9 }
39
40 } // namespace ::na64dp::event
41 } // namespace na64dp
42
43 #endif // defined(hdql_FOUND) && hdql_FOUND
44