ATLAS Offline Software
Classes | Namespaces | Functions
JobOption.h File Reference
#include "TrigConfL1Data/TrigConfData.h"
#include <iosfwd>
#include <string>
Include dependency graph for JobOption.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  TrigConf::JobOption
 hold a single job option (parameter and value) More...
 

Namespaces

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

Functions

std::ostream & operator<< (std::ostream &o, const TrigConf::JobOption &jo)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  o,
const TrigConf::JobOption jo 
)

Definition at line 62 of file JobOption.cxx.

41  {
42  o << "JobOption: " << jo.component_alias() << "." << jo.name() << " = " << jo.value()
43  << " type: " << jo.type() << "\t op: " << jo.op();
44  return o;
45 }
TrigConf::JobOption::component_alias
const std::string & component_alias() const
Definition: JobOption.h:53
TrigConf::JobOption::value
const std::string & value() const
accessor to parameter value
Definition: JobOption.h:57
TrigConf::JobOption::name
const std::string & name() const
accessor to component alias
Definition: JobOption.h:54
TrigConf::JobOption::op
const std::string & op() const
accessor to optional set flag
Definition: JobOption.h:56
TrigConf::JobOption::type
const std::string & type() const
accessor to parameter type
Definition: JobOption.h:55