SimulationDrawingOptions.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Display parameters for the raw data
4 //
5 // \author brebel@fnal.gov
6 ////////////////////////////////////////////////////////////////////////
7 #ifndef SIMULATIONDRAWINGOPTIONS_H
8 #define SIMULATIONDRAWINGOPTIONS_H
9 #ifndef __CINT__
10 #include <string>
11 #include <vector>
12 
13 #include "fhiclcpp/ParameterSet.h"
18 #include "nuevdb/EventDisplayBase/Reconfigurable.h"
19 
20 namespace evd {
21 
22 class SimulationDrawingOptions : public evdb::Reconfigurable
23 {
24 public:
25  explicit SimulationDrawingOptions(fhicl::ParameterSet const& pset);
26 
27  void reconfigure(fhicl::ParameterSet const& pset) ;
28 
30  unsigned short fShowMCTruthVectors;
34  bool fShowSimPhotonInfo; ///< Display SimPhoton info in 3D display
37  bool fShowScintillationLight = false; ///< Whether to draw low energy light (default: no).
39  art::InputTag fG4ModuleLabel; ///< module label producing sim::SimChannel objects
40  art::InputTag fSimChannelLabel; ///< SimChannels may be independent of MC stuff
41  art::InputTag fSimEnergyLabel; ///< Also for SimEnergyDeposits
42  art::InputTag fSimPhotonLabel; ///< and for SimPhotons
43 
44  fhicl::ParameterSet f3DDrawerParams; ///< FHICL paramegers for the 3D drawers
45 };
46 
47 }//namespace
48 #endif // __CINT__
50 #endif
art::InputTag fG4ModuleLabel
module label producing sim::SimChannel objects
fhicl::ParameterSet f3DDrawerParams
FHICL paramegers for the 3D drawers.
SimulationDrawingOptions(fhicl::ParameterSet const &pset)
bool fShowSimPhotonInfo
Display SimPhoton info in 3D display.
art::InputTag fSimPhotonLabel
and for SimPhotons
LArSoft includes.
Definition: InfoTransfer.h:33
void reconfigure(fhicl::ParameterSet const &pset)
#define DECLARE_ART_SERVICE(svc, scope)
bool fShowScintillationLight
Whether to draw low energy light (default: no).
art::InputTag fSimChannelLabel
SimChannels may be independent of MC stuff.
art::InputTag fSimEnergyLabel
Also for SimEnergyDeposits.