ATLAS Offline Software
|
Helper class storing information about the accessed files. More...
Public Member Functions | |
bool | operator< (const AccessedFile &rhs) const |
Operator to be able to put this into an std::set. More... | |
::TString | fullFilePath () const |
Function returning the full file path. More... | |
Public Attributes | |
::TString | filePath |
The full path to the file. More... | |
::TString | fileName |
The name of the file. More... | |
Helper class storing information about the accessed files.
Definition at line 72 of file TFileAccessTracer.h.
TString xAOD::TFileAccessTracer::AccessedFile::fullFilePath | ( | ) | const |
Function returning the full file path.
Since in the end it was decided to send the file names as a single string to the monitoring service, this function joins the path name + file name back up again.
A bit inefficient, but it keeps the possibility open for collecting the path and file names separately in the future.
Definition at line 315 of file TFileAccessTracer.cxx.
bool xAOD::TFileAccessTracer::AccessedFile::operator< | ( | const AccessedFile & | rhs | ) | const |
Operator to be able to put this into an std::set.
Very simple, but probably a bit slow operator, that allows us to put such AccessedFile objects into an std::set.
May need to introduce something more performant later on.
rhs | The object to compare the current one to |
true
or false
according to a simple, strict ordering rule Definition at line 295 of file TFileAccessTracer.cxx.
::TString xAOD::TFileAccessTracer::AccessedFile::fileName |
The name of the file.
Definition at line 77 of file TFileAccessTracer.h.
::TString xAOD::TFileAccessTracer::AccessedFile::filePath |
The full path to the file.
Definition at line 75 of file TFileAccessTracer.h.