From 011afb9fc57de0d25f464b04e463f92f0b583348 Mon Sep 17 00:00:00 2001 From: Chengdong Fu <fucd@ihep.ac.cn> Date: Mon, 21 Nov 2022 22:05:44 +0800 Subject: [PATCH] add energy & pull cuts --- Digitisers/SimpleDigi/src/PlanarDigiAlg.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Digitisers/SimpleDigi/src/PlanarDigiAlg.h b/Digitisers/SimpleDigi/src/PlanarDigiAlg.h index 10ddd9dd..0e53e707 100644 --- a/Digitisers/SimpleDigi/src/PlanarDigiAlg.h +++ b/Digitisers/SimpleDigi/src/PlanarDigiAlg.h @@ -82,13 +82,15 @@ protected: // whether use Planar tag for type and cov, if true, CEPCConf::TrkHitTypeBit::PLANAR bit is set as true // cov[0]=thetaU, cov[1]=phiU, cov[2]=resU, cov[0]=thetaV, cov[1]=phiV, cov[2]=resV Gaudi::Property<bool> _usePlanarTag{ this, "UsePlanarTag", true }; + Gaudi::Property<float> _eThreshold{ this, "EnergyThreshold", 0 }; + Gaudi::Property<float> _maxPull{ this, "PullCutToRetry", 1000. }; // Input collections DataHandle<edm4hep::EventHeaderCollection> _headerCol{"EventHeaderCol", Gaudi::DataHandle::Reader, this}; DataHandle<edm4hep::SimTrackerHitCollection> _inColHdl{"VXDCollection", Gaudi::DataHandle::Reader, this}; // Output collections DataHandle<edm4hep::TrackerHitCollection> _outColHdl{"VXDTrackerHits", Gaudi::DataHandle::Writer, this}; - DataHandle<edm4hep::MCRecoTrackerAssociationCollection> _outRelColHdl{"VTXTrackerHitRelations", Gaudi::DataHandle::Writer, this}; + DataHandle<edm4hep::MCRecoTrackerAssociationCollection> _outRelColHdl{"VXDTrackerHitRelations", Gaudi::DataHandle::Writer, this}; }; #endif -- GitLab