ATLAS Offline Software
Loading...
Searching...
No Matches
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

namespace  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}
const std::string & op() const
accessor to optional set flag
Definition JobOption.h:56
const std::string & name() const
accessor to component alias
Definition JobOption.h:54
const std::string & value() const
accessor to parameter value
Definition JobOption.h:57
const std::string & component_alias() const
Definition JobOption.h:53
const std::string & type() const
accessor to parameter type
Definition JobOption.h:55