Iguana LATEST
Implementation Guardian of Analysis Algorithms
Loading...
Searching...
No Matches
Algorithm.h
1#pragma once
2
3#include "iguana/algorithms/clas12/rga/FiducialFilterPass1/Algorithm.h"
4
5namespace iguana::example {
6
11 {
12 // use `DEFINE_IGUANA_SUBALGORITHM` rather than the usual `DEFINE_IGUANA_ALGORITHM`;
13 // include the base-class algorithm as an argument
15
16 private: // hooks
17 // if you don't declare a hook, the base-class algorithm's implementation will be used;
18 // in this example, we use all the base-class hooks
19 };
20
21}
#define DEFINE_IGUANA_SUBALGORITHM(ALGO_NAME, ALGO_FULL_NAME, BASE_NAME)
Algorithm: Filter the REC::Particle bank by applying DC (drift chamber) and ECAL (electromagnetic cal...
Definition Algorithm.h:19
Algorithm: example demonstrating inheritance from another algorithm
Definition Algorithm.h:11
Example algorithms.
Definition Algorithm.h:18