24 std::cout <<
"triggerEnergies = { ";
26 std::cout <<
x <<
" ";
28 std::cout <<
" }" << std::endl;
31 std::cout <<
x <<
" ";
33 std::cout <<
" }" << std::endl;
39 std::stringstream sstream;
40 std::vector<float> counterValues;
41 std::vector<float>::const_iterator itr;
42 std::vector<float>::const_iterator itr_end;
45 itr = counterValues.begin();
46 itr_end = counterValues.end();
47 sstream <<
"triggerEnergies = { ";
48 for(;itr != itr_end; ++itr) {
49 sstream << (*itr) <<
" ";
51 sstream <<
" }" << std::endl;
54 itr = counterValues.begin();
55 itr_end = counterValues.end();
56 sstream <<
"triggerTimes = { ";
57 for(;itr != itr_end; ++itr) {
58 sstream << (*itr) <<
" ";
66 MsgStream&
operator<< (MsgStream& m,
const TrigT2MbtsBits_v1& trigT2MbtsBits) {
67 return (m <<
str(trigT2MbtsBits));
#define AUXSTORE_OBJECT_SETTER_AND_GETTER(CL, TYPE, NAME, SETTER)
Macro creating the accessors of complex auxiliary properties.
AuxElement()
Default constructor.
void print(void) const
Prints out data members to std::cout.
const std::vector< float > & triggerEnergies() const
Return the trigger energies of each counter.
TrigT2MbtsBits_v1()
default ctor
const std::vector< float > & triggerTimes() const
Return the relative times of the triggers.
ICaloAffectedTool is abstract interface for tools checking if 4 mom is in calo affected region.
std::ostream & operator<<(std::ostream &out, const std::pair< FIRST, SECOND > &pair)
Helper print operator.