ATLAS Offline Software
Loading...
Searching...
No Matches
HLTChain.h File Reference
#include "TrigConfL1Data/TrigConfData.h"
#include "TrigConfHLTData/HLTPrescale.h"
#include "TrigConfHLTData/HLTLevel.h"
#include <string>
#include <iosfwd>
#include <fstream>
#include <vector>
#include <set>
#include <unordered_map>
Include dependency graph for TrigConfHLTData/TrigConfHLTData/HLTChain.h:

Go to the source code of this file.

Classes

class  TrigConf::HLTChain
 HLT chain configuration information. More...

Namespaces

namespace  TrigConf
 Forward iterator to traverse the main components of the trigger configuration.

Functions

bool HLTChain_lt (const TrigConf::HLTChain *ch1, const TrigConf::HLTChain *ch2)
std::ostream & TrigConf::operator<< (std::ostream &, const HLTChain &)

Function Documentation

◆ HLTChain_lt()

bool HLTChain_lt ( const TrigConf::HLTChain * ch1,
const TrigConf::HLTChain * ch2 )

Definition at line 23 of file TrigConfHLTData/Root/HLTChain.cxx.

23 {
24 if(ch1!=0 && ch2!=0) { return *ch1 < *ch2; }
25 else { return ch1==0; }
26}