ATLAS Offline Software
Loading...
Searching...
No Matches
TeATIME.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4// TeATIME.h
5// TopoCore
6// Based on the JIRA ticket: https://its.cern.ch/jira/browse/ATR-31097
7
8#ifndef __TopoCore__TeATIME__
9#define __TopoCore__TeATIME__
10
11#include <iostream>
13
14class TH2;
15
16namespace TCS {
17
18 class TeATIME : public DecisionAlg {
19 public:
20 TeATIME(const std::string & name);
21 virtual ~TeATIME() = default;
22
23 virtual StatusCode initialize() override;
24
25 virtual StatusCode processBitCorrect( const std::vector<TCS::TOBArray const *> & input,
26 const std::vector<TCS::TOBArray *> & output,
27 Decision & decison ) override;
28
29
30 virtual StatusCode process( const std::vector<TCS::TOBArray const *> & input,
31 const std::vector<TCS::TOBArray *> & output,
32 Decision & decison ) override;
33
34 };
35
36}
37
38#endif
const std::string & name() const
DecisionAlg(const std::string &name)
Definition DecisionAlg.h:25
virtual StatusCode initialize() override
Definition TeATIME.cxx:42
virtual ~TeATIME()=default
virtual StatusCode processBitCorrect(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison) override
Definition TeATIME.cxx:57
TeATIME(const std::string &name)
Definition TeATIME.cxx:25
const std::string process