#include <TracerSA.h>
Public Member Functions | |
| TracerSA (const char *scope) | |
| ~TracerSA () | |
Private Attributes | |
| std::string | fScope |
Static Private Attributes | |
| Int_t | fPrintOffset = 0 |
|
|
Definition at line 18 of file TracerSA.cxx. References fPrintOffset, fScope, and MSG. 00018 : 00019 fScope(scope) 00020 { 00021 assert( !fScope.empty() && "Bad character string given!"); 00022 std::string offset; 00023 offset.resize(2*fPrintOffset, ' '); 00024 00025 MSG("FitTrackSA",Msg::kDebug) << offset << "Entering " 00026 << fScope << std::endl; 00027 ++fPrintOffset; 00028 }
|
|
|
Definition at line 31 of file TracerSA.cxx. References fPrintOffset, fScope, and MSG. 00032 {
00033 --fPrintOffset;
00034 std::string offset;
00035 offset.resize(2*fPrintOffset, ' ');
00036 assert( !fScope.empty() && "String got hosed!");
00037 MSG("FitTrackSA",Msg::kDebug) << offset << "Leaving "
00038 << fScope << std::endl;
00039 }
|
|
|
Definition at line 15 of file TracerSA.cxx. Referenced by TracerSA(), and ~TracerSA(). |
|
|
Definition at line 15 of file TracerSA.h. Referenced by TracerSA(), and ~TracerSA(). |
1.3.9.1