Prints the content of all the tracks on screen. More...
Classes | |
struct | Config |
Configuration object. More... | |
Public Types | |
using | Parameters = art::EDAnalyzer::Table< Config > |
Public Member Functions | |
DumpTracks (Parameters const &config) | |
Default constructor. More... | |
void | analyze (const art::Event &evt) |
Does the printing. More... | |
Private Member Functions | |
void | DumpTrack (unsigned int iTrack, recob::Track const &track) const |
Dumps information about the specified track. More... | |
Private Attributes | |
art::InputTag | fTrackModuleLabel |
name of module that produced the tracks More... | |
std::string | fOutputCategory |
category for LogInfo output More... | |
unsigned int | fPrintWayPoints |
number of printed way points More... | |
bool | fPrintNHits |
prints the number of associated hits More... | |
bool | fPrintNSpacePoints |
prints the number of associated space points More... | |
bool | fPrintNParticles |
prints the number of associated PFParticles More... | |
bool | fPrintHits |
prints the index of associated hits More... | |
bool | fPrintSpacePoints |
prints the index of associated space points More... | |
bool | fPrintParticles |
prints the index of associated PFParticles More... | |
Prints the content of all the tracks on screen.
This analyser prints the content of all the tracks into the LogInfo/LogVerbatim stream. The associated objects are printed only if they were produced with the same input tag as the tracks.
"DumpTracks"
): the category used for the output (useful for filtering)10
): approximate number of way points printed in the outputtrue
): prints the number of space points associated with the tracksfalse
): print the index of all hits associated with the trackstrue
): prints the number of hits associated with the tracksfalse
): print the index of all hits associated with the trackstrue
): prints the number of particle-flow particles associated with the tracks Definition at line 228 of file DumpTracks_module.cc.
using recob::DumpTracks::Parameters = art::EDAnalyzer::Table<Config> |
Definition at line 278 of file DumpTracks_module.cc.
|
explicit |
Default constructor.
Definition at line 312 of file DumpTracks_module.cc.
void recob::DumpTracks::analyze | ( | const art::Event & | evt | ) |
Does the printing.
Definition at line 326 of file DumpTracks_module.cc.
|
private |
Dumps information about the specified track.
Definition at line 412 of file DumpTracks_module.cc.
|
private |
category for LogInfo output
Definition at line 289 of file DumpTracks_module.cc.
|
private |
prints the index of associated hits
Definition at line 295 of file DumpTracks_module.cc.
|
private |
prints the number of associated hits
Definition at line 292 of file DumpTracks_module.cc.
|
private |
prints the number of associated PFParticles
Definition at line 294 of file DumpTracks_module.cc.
|
private |
prints the number of associated space points
Definition at line 293 of file DumpTracks_module.cc.
|
private |
prints the index of associated PFParticles
Definition at line 297 of file DumpTracks_module.cc.
|
private |
prints the index of associated space points
Definition at line 296 of file DumpTracks_module.cc.
|
private |
number of printed way points
Definition at line 290 of file DumpTracks_module.cc.
|
private |
name of module that produced the tracks
Definition at line 288 of file DumpTracks_module.cc.