#include <AtlfastDumperObject.h>
Collaboration diagram for Atlfast::AtlfastDumperObject:
Public Member Functions | |
AtlfastDumperObject (const std::string &location, const std::string &coordinates, std::string inset="") | |
void | operator() (const IKinematic *) const |
Private Attributes | |
std::string | m_front |
stuff to put at the begining of debug lines (eg tab) | |
std::string | m_coordinates |
Definition at line 20 of file AtlfastDumperObject.h.
Atlfast::AtlfastDumperObject::AtlfastDumperObject | ( | const std::string & | location, | |
const std::string & | coordinates, | |||
std::string | inset = "" | |||
) |
Definition at line 13 of file AtlfastDumperObject.cxx.
00015 : 00016 m_front(inset), m_coordinates(coordinates){ 00017 std::cout<<std::endl 00018 <<std::endl 00019 <<"Dumping objects from " 00020 <<location 00021 <<std::endl 00022 <<std::endl; 00023 }
void Atlfast::AtlfastDumperObject::operator() | ( | const IKinematic * | ) | const |
Definition at line 25 of file AtlfastDumperObject.cxx.
00025 { 00026 a->print(m_coordinates, m_front); 00027 }
std::string Atlfast::AtlfastDumperObject::m_front [private] |
stuff to put at the begining of debug lines (eg tab)
Definition at line 29 of file AtlfastDumperObject.h.
std::string Atlfast::AtlfastDumperObject::m_coordinates [private] |
Definition at line 30 of file AtlfastDumperObject.h.