ATLAS Offline Software
Loading...
Searching...
No Matches
TeAsymmetry.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4// TeAsymmetry.h
5// TopoCore
6// Based on the JIRA ticket: https://its.cern.ch/jira/browse/ATR-31097
7
8#ifndef __TopoCore__TeAsymmetry__
9#define __TopoCore__TeAsymmetry__
10
11#include <iostream>
14
15class TH2;
16
17namespace TCS {
18
19 class TeAsymmetry : public DecisionAlg {
20 public:
21 TeAsymmetry(const std::string & name);
22 virtual ~TeAsymmetry();
23
24 virtual StatusCode initialize();
25
26 virtual StatusCode processBitCorrect( const std::vector<TCS::TOBArray const *> & input,
27 const std::vector<TCS::TOBArray *> & output,
28 Decision & decison );
29
30
31 virtual StatusCode process( const std::vector<TCS::TOBArray const *> & input,
32 const std::vector<TCS::TOBArray *> & output,
33 Decision & decison );
34
35
36 private:
37
40 parType_t p_deltaAbsMin[4] = {0, 0, 0, 0};
41 parType_t p_asymFactor[4] = { 0, 0, 0, 0 };
42 parType_t p_asymOffset[4] = { 0, 0, 0, 0 };
43 parType_t p_maxTeProduct[4] = { 0, 0, 0, 0 };
44
45 };
46
47}
48
49#endif
const std::string & name() const
DecisionAlg(const std::string &name)
Definition DecisionAlg.h:25
parType_t p_asymFactor[4]
Definition TeAsymmetry.h:41
virtual StatusCode initialize()
virtual StatusCode processBitCorrect(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison)
parType_t p_MinSidejTE
Definition TeAsymmetry.h:38
parType_t p_MaxSidejTE
Definition TeAsymmetry.h:39
virtual ~TeAsymmetry()
parType_t p_maxTeProduct[4]
Definition TeAsymmetry.h:43
parType_t p_deltaAbsMin[4]
Definition TeAsymmetry.h:40
parType_t p_asymOffset[4]
Definition TeAsymmetry.h:42
TeAsymmetry(const std::string &name)
const std::string process
uint32_t parType_t
Definition Parameter.h:22