GCC Code Coverage Report


Directory: ./
File: examples/iguana_ex_cpp_config_files.cc
Date: 2025-03-24 18:50:00
Exec Total Coverage
Lines: 47 48 97.9%
Functions: 1 1 100.0%
Branches: 75 146 51.4%

Line Branch Exec Source
1 #include <cassert>
2 #include <iguana/algorithms/clas12/ZVertexFilter/Algorithm.h>
3
4 /// @begin_doc_example{cpp}
5 /// @file iguana_ex_cpp_config_files.cc
6 /// @brief Example showing how to control algorithm configuration.
7 ///
8 /// Examples include:
9 /// - hard-coding a configuration setting override
10 /// - using a configuration file
11 /// - using a directory of configuration files
12 ///
13 /// @par Usage
14 /// ```bash
15 /// iguana_ex_cpp_config_files [CONFIG_FILE_DIRECTORY]
16 ///
17 /// CONFIG_FILE_DIRECTORY a custom directory with config files
18 /// (default = an example directory)
19 /// ```
20 /// @end_doc_example
21
22 /// main function
23
1/2
✓ Branch 0 (2→3) taken 1 times.
✗ Branch 1 (2→7) not taken.
1 int main(int argc, char** argv)
24 {
25
26 // parse arguments
27 std::string configDir;
28
1/2
✓ Branch 0 (2→3) taken 1 times.
✗ Branch 1 (2→7) not taken.
1 if(argc > 1)
29
1/2
✓ Branch 0 (3→4) taken 1 times.
✗ Branch 1 (3→225) not taken.
2 configDir = std::string(argv[1]);
30 else
31 configDir = iguana::ConfigFileReader::GetConfigInstallationPrefix() + "/examples";
32 1 fmt::print("Using top-level configuration directory {}\n", configDir);
33
34 // loop over multiple examples how to use configuration files and set options
35
2/2
✓ Branch 0 (152→16) taken 6 times.
✓ Branch 1 (152→153) taken 1 times.
7 for(int example = 1; example <= 6; example++) {
36
1/2
✓ Branch 0 (17→18) taken 6 times.
✗ Branch 1 (17→163) not taken.
12 fmt::print("\n" + iguana::Logger::Header(fmt::format("CONFIG EXAMPLE {}", example)) + "\n");
37
38 // start the algorithm; it will be destroyed at the end of each `example` iteration
39
1/2
✓ Branch 0 (27→28) taken 6 times.
✗ Branch 1 (27→225) not taken.
6 auto algo = std::make_unique<iguana::clas12::ZVertexFilter>();
40
1/2
✓ Branch 0 (28→29) taken 6 times.
✗ Branch 1 (28→221) not taken.
6 algo->SetLogLevel("debug");
41
42
6/6
✓ Branch 0 (29→30) taken 1 times.
✓ Branch 1 (29→50) taken 1 times.
✓ Branch 2 (29→67) taken 1 times.
✓ Branch 3 (29→87) taken 1 times.
✓ Branch 4 (29→108) taken 1 times.
✓ Branch 5 (29→128) taken 1 times.
6 switch(example) {
43
44 case 1:
45 {
46 // Use the default configuration, from `../src/iguana/algorithms/clas12/ZVertexFilter.yaml`
47
1/2
✓ Branch 0 (30→31) taken 1 times.
✗ Branch 1 (30→221) not taken.
1 algo->Start();
48
1/2
✓ Branch 0 (31→32) taken 1 times.
✗ Branch 1 (31→221) not taken.
1 auto key = algo->PrepareEvent(4800); // sets the run number and loads the cuts
49
2/4
✓ Branch 0 (32→33) taken 1 times.
✗ Branch 1 (32→221) not taken.
✗ Branch 2 (33→34) not taken.
✓ Branch 3 (33→35) taken 1 times.
1 assert((algo->GetRunNum(key) == 4800)); // pass the key into the 'Get*' methods
50
3/6
✓ Branch 0 (35→36) taken 1 times.
✗ Branch 1 (35→221) not taken.
✓ Branch 2 (36→37) taken 1 times.
✗ Branch 3 (36→165) not taken.
✗ Branch 4 (37→38) not taken.
✓ Branch 5 (37→39) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(0) == -13.0));
51
3/6
✓ Branch 0 (42→43) taken 1 times.
✗ Branch 1 (42→221) not taken.
✓ Branch 2 (43→44) taken 1 times.
✗ Branch 3 (43→169) not taken.
✗ Branch 4 (44→45) not taken.
✓ Branch 5 (44→46) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(1) == 12.0));
52 1 break;
53 }
54
55 case 2:
56 {
57 // Use `SetElectronZcuts` to set the cuts
58 // - note that this will OVERRIDE any value used in any configuration file
59 // - only use `SetElectronZcuts` if for any reason you want to hard-code a specific value; usage
60 // of configuration files is preferred in general
61
1/2
✓ Branch 0 (50→51) taken 1 times.
✗ Branch 1 (50→221) not taken.
1 algo->Start();
62 iguana::concurrent_key_t const key = 0; // need the same key in `SetElectronZcuts` and `GetElectronZcuts`
63
1/2
✓ Branch 0 (51→52) taken 1 times.
✗ Branch 1 (51→221) not taken.
1 algo->SetElectronZcuts(-5.0, 3.0, key);
64
3/6
✓ Branch 0 (52→53) taken 1 times.
✗ Branch 1 (52→221) not taken.
✓ Branch 2 (53→54) taken 1 times.
✗ Branch 3 (53→173) not taken.
✗ Branch 4 (54→55) not taken.
✓ Branch 5 (54→56) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(0) == -5.0));
65
3/6
✓ Branch 0 (59→60) taken 1 times.
✗ Branch 1 (59→221) not taken.
✓ Branch 2 (60→61) taken 1 times.
✗ Branch 3 (60→177) not taken.
✗ Branch 4 (61→62) not taken.
✓ Branch 5 (61→63) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(1) == 3.0));
66 1 break;
67 }
68
69 case 3:
70 {
71 // Use a specific configuration file
72
2/4
✓ Branch 0 (67→68) taken 1 times.
✗ Branch 1 (67→221) not taken.
✓ Branch 2 (68→69) taken 1 times.
✗ Branch 3 (68→181) not taken.
1 algo->SetConfigFile(configDir + "/my_z_vertex_cuts.yaml");
73
1/2
✓ Branch 0 (70→71) taken 1 times.
✗ Branch 1 (70→221) not taken.
1 algo->Start();
74
1/2
✓ Branch 0 (71→72) taken 1 times.
✗ Branch 1 (71→221) not taken.
1 auto key = algo->PrepareEvent(5500);
75
3/6
✓ Branch 0 (72→73) taken 1 times.
✗ Branch 1 (72→221) not taken.
✓ Branch 2 (73→74) taken 1 times.
✗ Branch 3 (73→183) not taken.
✗ Branch 4 (74→75) not taken.
✓ Branch 5 (74→76) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(0) == -0.8));
76
3/6
✓ Branch 0 (79→80) taken 1 times.
✗ Branch 1 (79→221) not taken.
✓ Branch 2 (80→81) taken 1 times.
✗ Branch 3 (80→187) not taken.
✗ Branch 4 (81→82) not taken.
✓ Branch 5 (81→83) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(1) == 0.7));
77 1 break;
78 }
79
80 case 4:
81 {
82 // Use the same specific configuration file, but don't set a run number;
83 // note also the usage of `SetConfigDirectory`, as another example how to set a specific configuration file
84
1/2
✓ Branch 0 (87→88) taken 1 times.
✗ Branch 1 (87→221) not taken.
1 algo->SetConfigDirectory(configDir);
85
2/4
✓ Branch 0 (88→89) taken 1 times.
✗ Branch 1 (88→221) not taken.
✓ Branch 2 (89→90) taken 1 times.
✗ Branch 3 (89→191) not taken.
1 algo->SetConfigFile("my_z_vertex_cuts.yaml");
86
1/2
✓ Branch 0 (91→92) taken 1 times.
✗ Branch 1 (91→221) not taken.
1 algo->Start();
87
1/2
✓ Branch 0 (92→93) taken 1 times.
✗ Branch 1 (92→221) not taken.
1 auto key = algo->PrepareEvent(0); // run number "0" means "no run number"
88
3/6
✓ Branch 0 (93→94) taken 1 times.
✗ Branch 1 (93→221) not taken.
✓ Branch 2 (94→95) taken 1 times.
✗ Branch 3 (94→193) not taken.
✗ Branch 4 (95→96) not taken.
✓ Branch 5 (95→97) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(0) == -1.5));
89
3/6
✓ Branch 0 (100→101) taken 1 times.
✗ Branch 1 (100→221) not taken.
✓ Branch 2 (101→102) taken 1 times.
✗ Branch 3 (101→197) not taken.
✗ Branch 4 (102→103) not taken.
✓ Branch 5 (102→104) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(1) == 1.3));
90 1 break;
91 }
92
93 case 5:
94 {
95 // Use a custom directory of configuration files; if a configuration file within
96 // has the same path and name as the default (`ZVertexFilter.yaml`), it will be used instead of the default.
97 // This is designed such that if you copy the full installed configuration directory to a new location, you
98 // may use that directory instead of the default, and modify any configuration file within.
99
2/4
✓ Branch 0 (108→109) taken 1 times.
✗ Branch 1 (108→221) not taken.
✓ Branch 2 (109→110) taken 1 times.
✗ Branch 3 (109→201) not taken.
1 algo->SetConfigDirectory(configDir + "/my_config_directory");
100
1/2
✓ Branch 0 (111→112) taken 1 times.
✗ Branch 1 (111→221) not taken.
1 algo->Start();
101
1/2
✓ Branch 0 (112→113) taken 1 times.
✗ Branch 1 (112→221) not taken.
1 auto key = algo->PrepareEvent(0); // run number "0" means "no run number"
102
3/6
✓ Branch 0 (113→114) taken 1 times.
✗ Branch 1 (113→221) not taken.
✓ Branch 2 (114→115) taken 1 times.
✗ Branch 3 (114→203) not taken.
✗ Branch 4 (115→116) not taken.
✓ Branch 5 (115→117) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(0) == -15.0));
103
3/6
✓ Branch 0 (120→121) taken 1 times.
✗ Branch 1 (120→221) not taken.
✓ Branch 2 (121→122) taken 1 times.
✗ Branch 3 (121→207) not taken.
✗ Branch 4 (122→123) not taken.
✓ Branch 5 (122→124) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(1) == 15.0));
104 1 break;
105 }
106
107 case 6:
108 {
109 // Use a single, combined configuration file; each algorithm's options are in a separate section
110
1/2
✓ Branch 0 (128→129) taken 1 times.
✗ Branch 1 (128→221) not taken.
1 algo->SetConfigDirectory(configDir);
111
2/4
✓ Branch 0 (129→130) taken 1 times.
✗ Branch 1 (129→221) not taken.
✓ Branch 2 (130→131) taken 1 times.
✗ Branch 3 (130→211) not taken.
1 algo->SetConfigFile("my_combined_config_file.yaml");
112
1/2
✓ Branch 0 (132→133) taken 1 times.
✗ Branch 1 (132→221) not taken.
1 algo->Start();
113
1/2
✓ Branch 0 (133→134) taken 1 times.
✗ Branch 1 (133→221) not taken.
1 auto key = algo->PrepareEvent(0); // run number "0" means "no run number"
114
3/6
✓ Branch 0 (134→135) taken 1 times.
✗ Branch 1 (134→221) not taken.
✓ Branch 2 (135→136) taken 1 times.
✗ Branch 3 (135→213) not taken.
✗ Branch 4 (136→137) not taken.
✓ Branch 5 (136→138) taken 1 times.
1 assert((algo->GetElectronZcuts(key).at(0) == -33.0));
115
3/8
✓ Branch 0 (141→142) taken 1 times.
✗ Branch 1 (141→221) not taken.
✓ Branch 2 (142→143) taken 1 times.
✗ Branch 3 (142→217) not taken.
✗ Branch 4 (143→144) not taken.
✓ Branch 5 (143→145) taken 1 times.
✗ Branch 6 (221→222) not taken.
✗ Branch 7 (221→224) not taken.
1 assert((algo->GetElectronZcuts(key).at(1) == 11.0));
116 1 break;
117 }
118
119 default:
120 {
121 fmt::print(stderr, "ERROR: unknown example number '{}'\n", example);
122 return 1;
123 }
124 }
125
126
1/2
✓ Branch 0 (149→150) taken 6 times.
✗ Branch 1 (149→221) not taken.
6 algo->Stop();
127 }
128
129 return 0;
130 }
131