ATLAS Offline Software
Loading...
Searching...
No Matches
METNoSort.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4// METNoSort.h
5// TopoCore
6// Created by Joerg Stelzer on 11/10/12.
7
8#ifndef TCS__METNoSort
9#define TCS__METNoSort
10
13
14#include <iostream>
15#include <vector>
16
17namespace TCS {
18
19 class METNoSort : public SortingAlg {
20 public:
21
22 // constructor
23 METNoSort(const std::string & name);
24
25 // destructor
26 virtual ~METNoSort();
27
28 virtual StatusCode initialize();
29
30 virtual TCS::StatusCode sort(const InputTOBArray & input, TOBArray & output);
31
32
33
34 };
35
36} // end of namespace TCS
37
38#endif /* defined(__TopoCore__SortingAlg__) */
const std::string & name() const
virtual TCS::StatusCode sort(const InputTOBArray &input, TOBArray &output)
Definition METNoSort.cxx:37
virtual ~METNoSort()
Definition METNoSort.cxx:28
virtual StatusCode initialize()
Definition METNoSort.cxx:32
METNoSort(const std::string &name)
Definition METNoSort.cxx:20
SortingAlg(const std::string &name)
Definition SortingAlg.h:21