File tree Expand file tree Collapse file tree
JobConfigurations/standard/reco/config Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ class sbnd::crt::CRTVetoProducer : public art::EDProducer {
7272
7373private:
7474
75- CRTGeoAlg fCRTGeoAlg ;
7675 double fWindowStart ;
7776 double fWindowEnd ;
7877 std::string fCRTClusterModuleLabel ;
@@ -88,8 +87,6 @@ class sbnd::crt::CRTVetoProducer : public art::EDProducer {
8887 uint32_t fRawTSCorrection ;
8988 uint32_t fMaxAllowedRefTimeDiff ;
9089
91- std::vector<art::Ptr<CRTSpacePoint>> fVetoSpacePoints ;
92-
9390 unsigned int fEventID ;
9491 unsigned int fRun ;
9592 unsigned int fSubRun ;
@@ -99,7 +96,6 @@ class sbnd::crt::CRTVetoProducer : public art::EDProducer {
9996
10097sbnd::crt::CRTVetoProducer::CRTVetoProducer (fhicl::ParameterSet const & p)
10198 : EDProducer{p}
102- , fCRTGeoAlg (p.get<fhicl::ParameterSet>(" CRTGeoAlg" ))
10399 , fWindowStart (p.get<double >(" WindowStart" ))
104100 , fWindowEnd (p.get<double >(" WindowEnd" ))
105101 , fCRTClusterModuleLabel (p.get<std::string>(" CRTClusterModuleLabel" ))
@@ -119,9 +115,9 @@ sbnd::crt::CRTVetoProducer::CRTVetoProducer(fhicl::ParameterSet const& p)
119115
120116void sbnd::crt::CRTVetoProducer::produce (art::Event& e)
121117{
118+ // Declare Space Point Vector. Will fill this with Space Points that we veto on
119+ std::vector<art::Ptr<CRTSpacePoint>> fVetoSpacePoints ;
122120
123- fVetoSpacePoints .clear ();
124-
125121 fEventID = e.id ().event ();
126122 fRun = e.run ();
127123 fSubRun = e.subRun ();
Original file line number Diff line number Diff line change 1- #include "crtgeoalg_sbnd.fcl"
2- #include "crtsimmodules_sbnd.fcl"
3-
41BEGIN_PROLOG
52
6-
73crtvetoproducer_sbnd:
84{
9- CRTGeoAlg: @local::crtgeoalg_sbnd
105 CRTClusterModuleLabel: "crtclustering"
116 CRTSpacePointModuleLabel: "crtspacepoints"
127 CRTTimingReferenceInfoLabel: "crtstrips"
@@ -17,7 +12,6 @@ crtvetoproducer_sbnd:
1712}
1813
1914crtvetoproducer_data_sbnd: @local::crtvetoproducer_sbnd
20- crtvetoproducer_data_sbnd.CRTGeoAlg: @local::crtgeoalg_data_sbnd
2115crtvetoproducer_data_sbnd.IsData: true
2216
2317# Values for testing
@@ -32,7 +26,6 @@ crtvetoproducer_data_sbnd.MaxAllowedRefTimeDiff: 3000000
3226
3327# Top Hat Configuration for Debugging
3428crtvetoproducer_data_sbnd_tophat: @local::crtvetoproducer_sbnd
35- crtvetoproducer_data_sbnd_tophat.CRTGeoAlg: @local::crtgeoalg_data_sbnd
3629crtvetoproducer_data_sbnd_tophat.IsData: true
3730
3831# Values for testing
Original file line number Diff line number Diff line change 33#include "pandoramodules_sbnd.fcl"
44#include "calorimetry_sbnd.fcl"
55#include "sbnd_flashfinder_deco.fcl"
6- #include "crtrecoproducers_sbnd.fcl"
76#include "crtvetoproducer_sbnd.fcl"
87#include "particleid_sbnd.fcl"
98#include "crttpcmatchingproducers_sbnd.fcl"
@@ -45,11 +44,6 @@ sbnd_reco2_producers:{
4544 pandoraSCEShower: @local::sbnd_sce_incremental_pandoraModularShowerCreation
4645 pandoraSCEShowerSBN: @local::sbnd_sce_sbn_pandoraModularShowerCreation
4746
48- ### CRT reconstruction
49- crtclustering: @local::crtclusterproducer_sbnd
50- crtspacepoints: @local::crtspacepointproducer_sbnd
51- crttracks: @local::crttrackproducer_sbnd
52-
5347 ### CRT Veto
5448 crtveto: @local::crtvetoproducer_sbnd
5549
@@ -87,9 +81,6 @@ sbnd_reco2_producer_sequence: [
8781 , pandoraShowerSBN
8882 , pandoraCalo
8983 , pandoraPid
90- , crtclustering
91- , crtspacepoints
92- , crttracks
9384 , crtveto
9485 , crtspacepointmatching
9586 , crttrackmatching
You can’t perform that action at this time.
0 commit comments