Public Member Functions | Public Attributes | List of all members
evd::RecoDrawingOptions Class Reference

#include <RecoDrawingOptions.h>

Inheritance diagram for evd::RecoDrawingOptions:

Public Member Functions

 RecoDrawingOptions (fhicl::ParameterSet const &pset)
 
void reconfigure (fhicl::ParameterSet const &pset)
 

Public Attributes

int fDrawHits
 
int fDrawClusters
 
int fDrawSlices
 
int fDrawSliceSpacePoints
 
int fDrawPFParticles
 
int fDrawEdges
 
int fDraw2DSlopeEndPoints
 
int fDrawSpacePoints
 
int fDrawProngs
 
int fDrawTracks
 
int fDrawOpHits
 
int fDrawOpFlashes
 
int fDrawTrackTrajectoryPoints
 
int fDrawTrackSegments
 
int fDrawTrackSpacePoints
 
int fDrawShowers
 
int fDrawVertices
 
int fDrawEvents
 
int fDraw2DEndPoints
 
int fDrawSeeds
 
int fDrawCosmicTags
 
int fSelectedHitColor
 
bool fUseHitSelector
 
bool fSkeletonOnly
 
bool fBestPCAAxisOnly
 
bool fDrawTrackVertexAssns
 
bool fDraw3DSpacePoints
 
bool fDraw3DSpacePointHeatMap
 
bool fDraw3DEdges
 
bool fDraw3DPCAAxes
 
bool fDrawAllWireIDs
 
std::vector< art::InputTagfWireLabels
 module labels that produced wires More...
 
std::vector< art::InputTagfHitLabels
 module labels that produced hits More...
 
std::vector< art::InputTagfSliceLabels
 module labels that produced slices More...
 
std::vector< art::InputTagfEndPoint2DLabels
 module labels that produced end point 2d objects More...
 
std::vector< art::InputTagfClusterLabels
 module labels that produced clusters More...
 
std::vector< art::InputTagfPFParticleLabels
 module labels that produced PFParticles More...
 
std::vector< art::InputTagfEdgeLabels
 module labels that produced Edge objects More...
 
std::vector< art::InputTagfExtremePointLabels
 module labels that produced Extreme Points More...
 
std::vector< art::InputTagfSpacePointLabels
 module labels that produced space points More...
 
std::vector< art::InputTagfProngLabels
 module labels that produced prongs More...
 
std::vector< art::InputTagfTrackLabels
 module labels that produced tracks More...
 
std::vector< art::InputTagfShowerLabels
 module labels that produced showers More...
 
std::vector< art::InputTagfVertexLabels
 module labels that produced vertices More...
 
std::vector< art::InputTagfEventLabels
 module labels that produced events More...
 
std::vector< art::InputTagfOpHitLabels
 module labels that produced events More...
 
std::vector< art::InputTagfOpFlashLabels
 module labels that produced events More...
 
std::vector< art::InputTagfSeedLabels
 module labels that produced events More...
 
std::vector< art::InputTagfCosmicTagLabels
 module labels that produced cosmic tags More...
 
std::vector< art::InputTagfTrkVtxTrackLabels
 module labels that produced tracks (Track/Vertex module) More...
 
std::vector< art::InputTagfTrkVtxCosmicLabels
 module labels that tagged track as CR (Track/Vertex module) More...
 
std::vector< art::InputTagfTrkVtxFilterLabels
 module labels that filtered event (Track/Vertex module) More...
 
fhicl::ParameterSet fCaloPSet
 
fhicl::ParameterSet fSeedPSet
 < parameterset for calorimetry algorithm More...
 
int fColorProngsByLabel
 < parameterset for seed algorithm More...
 
int fColorSpacePointsByChisq
 Generate space point colors by chisquare? More...
 
double fFlashMinPE
 Minimal PE for a flash to be displayed. More...
 
double fFlashTMin
 Minimal time for a flash to be displayed. More...
 
double fFlashTMax
 Maximum time for a flash to be displayed. More...
 
fhicl::ParameterSet fHitDrawerParams
 FHICL parameters for the hit drawing. More...
 
fhicl::ParameterSet fWireDrawerParams
 FHICL parameters for the wire drawing. More...
 
fhicl::ParameterSet fSpacePointDrawerParams
 FHICL parameters for SpacePoint drawing. More...
 
fhicl::ParameterSet fAllSpacePointDrawerParams
 FHICL parameters for SpacePoint drawing. More...
 
fhicl::ParameterSet f3DDrawerParams
 FHICL paramegers for the 3D drawers. More...
 

Detailed Description

Definition at line 21 of file RecoDrawingOptions.h.

Constructor & Destructor Documentation

evd::RecoDrawingOptions::RecoDrawingOptions ( fhicl::ParameterSet const &  pset)
explicit

Definition at line 16 of file RecoDrawingOptions_service.cc.

17  : evdb::Reconfigurable{pset}
18 {
19  this->reconfigure(pset);
20 }
void reconfigure(fhicl::ParameterSet const &pset)

Member Function Documentation

void evd::RecoDrawingOptions::reconfigure ( fhicl::ParameterSet const &  pset)

Definition at line 23 of file RecoDrawingOptions_service.cc.

24 {
25  fDrawHits = pset.get< int >("DrawHits" );
26  fDrawClusters = pset.get< int >("DrawClusters" );
27  fDrawSlices = pset.get< int >("DrawSlices", 0);
28  fDrawSliceSpacePoints = pset.get< int >("DrawSliceSpacePoints", 0);
29  fDrawPFParticles = pset.get< int >("DrawPFParticles" );
30  fDrawEdges = pset.get< int >("DrawEdges" );
31  fDrawSpacePoints = pset.get< int >("DrawSpacePoints" );
32  fDrawProngs = pset.get< int >("DrawProngs" );
33  fDrawTracks = pset.get< int >("DrawTracks" );
34  fDrawTrackTrajectoryPoints = pset.get< int >("DrawTrackTrajectoryPoints");
35  fDrawTrackSegments = pset.get< int >("DrawTrackSegments" );
36  fDrawTrackSpacePoints = pset.get< int >("DrawTrackSpacePoints" );
37  fDrawShowers = pset.get< int >("DrawShowers" );
38  fDrawVertices = pset.get< int >("DrawVertices" );
39  fDrawOpHits = pset.get< int >("DrawOpHits" );
40  fDrawOpFlashes = pset.get< int >("DrawOpFlashes" );
41  fDrawSeeds = pset.get< int >("DrawSeeds" );
42  fDrawEvents = pset.get< int >("DrawEvents" );
43  fDraw2DEndPoints = pset.get< int >("Draw2DEndPoints" );
44  fDraw2DSlopeEndPoints = pset.get< int >("Draw2DSlopeEndPoints" );
45  fSelectedHitColor = pset.get< int >("SelectedHitColor" );
46  fUseHitSelector = pset.get< bool >("UseHitSelector" );
47  fSkeletonOnly = pset.get< bool >("DrawSkeleton3DHitsOnly" );
48  fBestPCAAxisOnly = pset.get< bool >("DrawBestPCAAxisOnly" );
49  fDrawTrackVertexAssns = pset.get< bool >("DrawTrackVertexAssns" );
50  fDraw3DSpacePoints = pset.get< bool >("Draw3DSpacePoints" );
51  fDraw3DSpacePointHeatMap = pset.get< bool >("Draw3DSpacePointHeatMap" );
52  fDraw3DEdges = pset.get< bool >("Draw3DEdges" );
53  fDraw3DPCAAxes = pset.get< bool >("Draw3DPCAAxes" );
54  fDrawAllWireIDs = pset.get< bool >("DrawAllWireIDs" );
55  fHitLabels = pset.get< std::vector<art::InputTag> >("HitModuleLabels" );
56  if(pset.has_key("SliceModuleLabels")) fSliceLabels = pset.get< std::vector<art::InputTag> >("SliceModuleLabels");
57  fSpacePointLabels = pset.get< std::vector<art::InputTag> >("SpacePointModuleLabels" );
58  fProngLabels = pset.get< std::vector<art::InputTag> >("ProngModuleLabels" );
59  fEndPoint2DLabels = pset.get< std::vector<art::InputTag> >("EndPoint2DModuleLabels" );
60  fClusterLabels = pset.get< std::vector<art::InputTag> >("ClusterModuleLabels" );
61  fPFParticleLabels = pset.get< std::vector<art::InputTag> >("PFParticleModuleLabels" );
62  fEdgeLabels = pset.get< std::vector<art::InputTag> >("EdgeModuleLabels" );
63  fExtremePointLabels = pset.get< std::vector<art::InputTag> >("ExtremeModuleLabels" );
64  fTrackLabels = pset.get< std::vector<art::InputTag> >("TrackModuleLabels" );
65  fShowerLabels = pset.get< std::vector<art::InputTag> >("ShowerModuleLabels" );
66  fVertexLabels = pset.get< std::vector<art::InputTag> >("VertexModuleLabels" );
67  fOpHitLabels = pset.get< std::vector<art::InputTag> >("OpHitModuleLabels" );
68  fOpFlashLabels = pset.get< std::vector<art::InputTag> >("OpFlashModuleLabels" );
69  fSeedLabels = pset.get< std::vector<art::InputTag> >("SeedModuleLabels" );
70  fTrkVtxTrackLabels = pset.get< std::vector<art::InputTag> >("TrkVtxTrackLabels" );
71  fTrkVtxCosmicLabels = pset.get< std::vector<art::InputTag> >("TrkVtxCosmicLabels" );
72  fTrkVtxFilterLabels = pset.get< std::vector<art::InputTag> >("TrkVtxFilterLabels" );
73 
74  fEventLabels = pset.get< std::vector<art::InputTag> >("EventModuleLabels" );
75  fWireLabels = pset.get< std::vector<art::InputTag> >("WireModuleLabels" );
76  fColorProngsByLabel = pset.get< int >("ColorProngsByLabel" );
77  fColorSpacePointsByChisq = pset.get< int >("ColorSpacePointsByChisq" );
78  fCaloPSet = pset.get< fhicl::ParameterSet >("CalorimetryAlgorithm" );
79  // fSeedPSet = pset.get< fhicl::ParameterSet >("SeedAlgorithm");
80 
81  fCosmicTagLabels = pset.get< std::vector<art::InputTag> >("CosmicTagLabels", std::vector<art::InputTag>() );
82  fDrawCosmicTags = pset.get< int >("DrawCosmicTags" );
83  fFlashMinPE = pset.get< double >("FlashMinPE", 0.0 );
84  fFlashTMin = pset.get< double >("FlashTMin", -1e9 );
85  fFlashTMax = pset.get< double >("FlashTMax", 1e9 );
86 
87  fHitDrawerParams = pset.get< fhicl::ParameterSet >("HitDrawer" );
88  fWireDrawerParams = pset.get< fhicl::ParameterSet >("WireDrawer" );
89 
90  fSpacePointDrawerParams = pset.get< fhicl::ParameterSet >("SpacePointDrawer" );
91  fAllSpacePointDrawerParams = pset.get< fhicl::ParameterSet >("AllSpacePointDrawer" );
92 
93  f3DDrawerParams = pset.get< fhicl::ParameterSet >("Reco3DDrawers" );
94  }
fhicl::ParameterSet fSpacePointDrawerParams
FHICL parameters for SpacePoint drawing.
int fColorProngsByLabel
< parameterset for seed algorithm
std::vector< art::InputTag > fEndPoint2DLabels
module labels that produced end point 2d objects
std::vector< art::InputTag > fTrkVtxCosmicLabels
module labels that tagged track as CR (Track/Vertex module)
std::vector< art::InputTag > fOpFlashLabels
module labels that produced events
std::vector< art::InputTag > fTrackLabels
module labels that produced tracks
std::vector< art::InputTag > fTrkVtxTrackLabels
module labels that produced tracks (Track/Vertex module)
int fColorSpacePointsByChisq
Generate space point colors by chisquare?
double fFlashTMin
Minimal time for a flash to be displayed.
std::vector< art::InputTag > fExtremePointLabels
module labels that produced Extreme Points
std::vector< art::InputTag > fCosmicTagLabels
module labels that produced cosmic tags
double fFlashTMax
Maximum time for a flash to be displayed.
std::vector< art::InputTag > fWireLabels
module labels that produced wires
std::vector< art::InputTag > fPFParticleLabels
module labels that produced PFParticles
std::vector< art::InputTag > fVertexLabels
module labels that produced vertices
T get(std::string const &key) const
Definition: ParameterSet.h:271
std::vector< art::InputTag > fEdgeLabels
module labels that produced Edge objects
fhicl::ParameterSet fWireDrawerParams
FHICL parameters for the wire drawing.
fhicl::ParameterSet fAllSpacePointDrawerParams
FHICL parameters for SpacePoint drawing.
std::vector< art::InputTag > fSliceLabels
module labels that produced slices
fhicl::ParameterSet f3DDrawerParams
FHICL paramegers for the 3D drawers.
double fFlashMinPE
Minimal PE for a flash to be displayed.
std::vector< art::InputTag > fSeedLabels
module labels that produced events
std::vector< art::InputTag > fSpacePointLabels
module labels that produced space points
fhicl::ParameterSet fCaloPSet
std::vector< art::InputTag > fHitLabels
module labels that produced hits
fhicl::ParameterSet fHitDrawerParams
FHICL parameters for the hit drawing.
std::vector< art::InputTag > fShowerLabels
module labels that produced showers
std::vector< art::InputTag > fTrkVtxFilterLabels
module labels that filtered event (Track/Vertex module)
std::vector< art::InputTag > fClusterLabels
module labels that produced clusters
std::vector< art::InputTag > fOpHitLabels
module labels that produced events
std::vector< art::InputTag > fEventLabels
module labels that produced events
std::vector< art::InputTag > fProngLabels
module labels that produced prongs

Member Data Documentation

fhicl::ParameterSet evd::RecoDrawingOptions::f3DDrawerParams

FHICL paramegers for the 3D drawers.

Definition at line 99 of file RecoDrawingOptions.h.

fhicl::ParameterSet evd::RecoDrawingOptions::fAllSpacePointDrawerParams

FHICL parameters for SpacePoint drawing.

Definition at line 97 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fBestPCAAxisOnly

Definition at line 52 of file RecoDrawingOptions.h.

fhicl::ParameterSet evd::RecoDrawingOptions::fCaloPSet
Todo:
Why are calorimetry related drawing options in RecoDrawingOptions instead of a separate service?

Definition at line 83 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fClusterLabels

module labels that produced clusters

Definition at line 64 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fColorProngsByLabel

< parameterset for seed algorithm

Generate prong colors by label or id?

Definition at line 86 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fColorSpacePointsByChisq

Generate space point colors by chisquare?

Definition at line 87 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fCosmicTagLabels

module labels that produced cosmic tags

Definition at line 77 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDraw2DEndPoints

Definition at line 46 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDraw2DSlopeEndPoints

Definition at line 34 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fDraw3DEdges

Definition at line 56 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fDraw3DPCAAxes

Definition at line 57 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fDraw3DSpacePointHeatMap

Definition at line 55 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fDraw3DSpacePoints

Definition at line 54 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fDrawAllWireIDs

Definition at line 58 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawClusters

Definition at line 29 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawCosmicTags

Definition at line 48 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawEdges

Definition at line 33 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawEvents

Definition at line 45 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawHits

Definition at line 28 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawOpFlashes

Definition at line 39 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawOpHits

Definition at line 38 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawPFParticles

Definition at line 32 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawProngs

Definition at line 36 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawSeeds

Definition at line 47 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawShowers

Definition at line 43 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawSlices

Definition at line 30 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawSliceSpacePoints

Definition at line 31 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawSpacePoints

Definition at line 35 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawTracks

Definition at line 37 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawTrackSegments

Definition at line 41 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawTrackSpacePoints

Definition at line 42 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawTrackTrajectoryPoints

Definition at line 40 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fDrawTrackVertexAssns

Definition at line 53 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fDrawVertices

Definition at line 44 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fEdgeLabels

module labels that produced Edge objects

Definition at line 66 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fEndPoint2DLabels

module labels that produced end point 2d objects

Definition at line 63 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fEventLabels

module labels that produced events

Definition at line 73 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fExtremePointLabels

module labels that produced Extreme Points

Definition at line 67 of file RecoDrawingOptions.h.

double evd::RecoDrawingOptions::fFlashMinPE

Minimal PE for a flash to be displayed.

Definition at line 89 of file RecoDrawingOptions.h.

double evd::RecoDrawingOptions::fFlashTMax

Maximum time for a flash to be displayed.

Definition at line 91 of file RecoDrawingOptions.h.

double evd::RecoDrawingOptions::fFlashTMin

Minimal time for a flash to be displayed.

Definition at line 90 of file RecoDrawingOptions.h.

fhicl::ParameterSet evd::RecoDrawingOptions::fHitDrawerParams

FHICL parameters for the hit drawing.

Definition at line 93 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fHitLabels

module labels that produced hits

Definition at line 61 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fOpFlashLabels

module labels that produced events

Definition at line 75 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fOpHitLabels

module labels that produced events

Definition at line 74 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fPFParticleLabels

module labels that produced PFParticles

Definition at line 65 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fProngLabels

module labels that produced prongs

Definition at line 69 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fSeedLabels

module labels that produced events

Definition at line 76 of file RecoDrawingOptions.h.

fhicl::ParameterSet evd::RecoDrawingOptions::fSeedPSet

< parameterset for calorimetry algorithm

Definition at line 84 of file RecoDrawingOptions.h.

int evd::RecoDrawingOptions::fSelectedHitColor

Definition at line 49 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fShowerLabels

module labels that produced showers

Definition at line 71 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fSkeletonOnly

Definition at line 51 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fSliceLabels

module labels that produced slices

Definition at line 62 of file RecoDrawingOptions.h.

fhicl::ParameterSet evd::RecoDrawingOptions::fSpacePointDrawerParams

FHICL parameters for SpacePoint drawing.

Definition at line 96 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fSpacePointLabels

module labels that produced space points

Definition at line 68 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fTrackLabels

module labels that produced tracks

Definition at line 70 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fTrkVtxCosmicLabels

module labels that tagged track as CR (Track/Vertex module)

Definition at line 79 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fTrkVtxFilterLabels

module labels that filtered event (Track/Vertex module)

Definition at line 80 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fTrkVtxTrackLabels

module labels that produced tracks (Track/Vertex module)

Definition at line 78 of file RecoDrawingOptions.h.

bool evd::RecoDrawingOptions::fUseHitSelector

Definition at line 50 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fVertexLabels

module labels that produced vertices

Definition at line 72 of file RecoDrawingOptions.h.

fhicl::ParameterSet evd::RecoDrawingOptions::fWireDrawerParams

FHICL parameters for the wire drawing.

Definition at line 94 of file RecoDrawingOptions.h.

std::vector<art::InputTag> evd::RecoDrawingOptions::fWireLabels

module labels that produced wires

Definition at line 60 of file RecoDrawingOptions.h.


The documentation for this class was generated from the following files: