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