Loading [MathJax]/extensions/tex2jax.js
Iguana 0.8.0
Implementation Guardian of Analysis Algorithms
All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
Algorithm.h
1#pragma once
2
3#include "iguana/algorithms/Algorithm.h"
4
5namespace iguana::clas12 {
6
20 class SectorFinder : public Algorithm
21 {
22
24
25 public:
26
27 void Start(hipo::banklist& banks) override;
28 void Run(hipo::banklist& banks) const override;
29 void Stop() override;
30
69 int GetSector(std::vector<int> const& sectors, std::vector<int> const& pindices, int const pindex) const;
70
75 void GetListsSectorPindex(hipo::bank const& bank, std::vector<int>& sectors, std::vector<int>& pindices) const;
76
77 private:
78
80 hipo::banklist::size_type b_particle;
81 hipo::banklist::size_type b_calorimeter;
82 hipo::banklist::size_type b_track;
83 hipo::banklist::size_type b_scint;
84 hipo::banklist::size_type b_user_charged;
85 hipo::banklist::size_type b_user_uncharged;
86 hipo::banklist::size_type b_result;
87 bool userSpecifiedBank_charged{false};
88 bool userSpecifiedBank_uncharged{true};
89
90 // `b_result` bank item indices
91 int i_sector;
92 int i_pindex;
93
95 std::string o_bankname_charged;
96 std::string o_bankname_uncharged;
97
98 //only want sectors from FD detectors
99 std::set<int> const listFDDets{6,7,12,15,16,18};
100 };
101
102}
#define DEFINE_IGUANA_ALGORITHM(ALGO_NAME, ALGO_FULL_NAME)
Algorithm(std::string_view name)
Definition Algorithm.h:45
Algorithm: Find the sector for all rows in REC::Particle
Definition Algorithm.h:21
void GetListsSectorPindex(hipo::bank const &bank, std::vector< int > &sectors, std::vector< int > &pindices) const
void Start(hipo::banklist &banks) override
Initialize this algorithm before any events are processed, with the intent to process banks
int GetSector(std::vector< int > const &sectors, std::vector< int > const &pindices, int const pindex) const
Action Function: for a given particle with index pindex, get its sector from a detector bank's list o...
void Stop() override
Finalize this algorithm after all events are processed.
void Run(hipo::banklist &banks) const override
Run this algorithm for an event.
CLAS12 algorithms.
Definition Algorithm.h:5