ATLAS Offline Software
Loading...
Searching...
No Matches
METCut.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4// METCut.h
5// TopoCore
6// Created by Joerg Stelzer on 11/16/12.
7
8#ifndef __TopoCore__METCut__
9#define __TopoCore__METCut__
10
11#include <iostream>
13
14namespace TCS {
15
16 class METCut : public DecisionAlg {
17 public:
18 METCut(const std::string & name);
19 virtual ~METCut();
20
21 virtual StatusCode initialize();
22
23 virtual StatusCode processBitCorrect( const std::vector<TCS::TOBArray const *> & input,
24 const std::vector<TCS::TOBArray *> & output,
25 Decision & decison );
26
27
28
29 virtual StatusCode process( const std::vector<TCS::TOBArray const *> & input,
30 const std::vector<TCS::TOBArray *> & output,
31 Decision & decison );
32
33
34 private:
35
36 parType_t p_XE = { 0 };
37
38 };
39
40}
41
42#endif
const std::string & name() const
DecisionAlg(const std::string &name)
Definition DecisionAlg.h:25
virtual StatusCode processBitCorrect(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison)
Definition METCut.cxx:44
METCut(const std::string &name)
Definition METCut.cxx:24
virtual ~METCut()
Definition METCut.cxx:30
virtual StatusCode initialize()
Definition METCut.cxx:34
parType_t p_XE
Definition METCut.h:36
const std::string process
uint32_t parType_t
Definition Parameter.h:22