ATLAS Offline Software
Loading...
Searching...
No Matches
HLTChain.cxx File Reference
#include "TrigConfHLTData/HLTChain.h"
#include "TrigConfHLTData/HLTSignature.h"
#include "TrigConfHLTData/HLTStreamTag.h"
#include "TrigConfHLTData/HLTTriggerType.h"
#include "TrigConfHLTUtils/HLTUtils.h"
#include "TrigConfL1Data/DiffStruct.h"
#include "TrigConfL1Data/HelperFunctions.h"
#include <algorithm>
#include <iostream>
#include <fstream>
#include <sstream>
#include <cstdlib>
#include <unordered_set>

Go to the source code of this file.

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::vector< std::string > TrigConf::parse (std::string names)

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}