From 28364bf4f11866ce1409546752230606a12de77c Mon Sep 17 00:00:00 2001
From: Chao Peng <cpeng@anl.gov>
Date: Mon, 12 Jul 2021 05:57:00 +0000
Subject: [PATCH] Change parameters for imaging ecal

---
 .../options/imaging_topocluster.py            | 19 +++++++++----------
 .../imaging_ecal/scripts/energy_profile.py    |  2 +-
 2 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/benchmarks/imaging_ecal/options/imaging_topocluster.py b/benchmarks/imaging_ecal/options/imaging_topocluster.py
index fafb3815..72a983bb 100644
--- a/benchmarks/imaging_ecal/options/imaging_topocluster.py
+++ b/benchmarks/imaging_ecal/options/imaging_topocluster.py
@@ -38,11 +38,11 @@ out = PodioOutput("out", filename=kwargs['output'])
 podioinput = PodioInput("PodioReader", collections=["mcparticles", "EcalBarrelHits"], OutputLevel=DEBUG)
 
 copier = MCCopier("MCCopier",
-        OutputLevel=DEBUG,
+        # OutputLevel=DEBUG,
         inputCollection="mcparticles",
         outputCollection="mcparticles2")
 calcopier = CalCopier("CalCopier",
-        OutputLevel=DEBUG,
+        # OutputLevel=DEBUG,
         inputCollection="EcalBarrelHits",
         outputCollection="EcalBarrelHits2")
 
@@ -52,15 +52,14 @@ daq_setting = dict(
         capacityADC=32767,
         pedestalMean=400,
         pedestalSigma=50)   # 50/32767*3 MeV ~ 5 keV
-
 imcaldigi = CalorimeterHitDigi("imcal_digi",
-        OutputLevel=DEBUG,
+        # OutputLevel=DEBUG,
         inputHitCollection="EcalBarrelHits",
         outputHitCollection="DigiEcalBarrelHits",
         energyResolutions=[0., 0.02, 0.],
         **daq_setting)
 imcalreco = ImagingPixelReco("imcal_reco",
-        OutputLevel=DEBUG,
+        # OutputLevel=DEBUG,
         inputHitCollection="DigiEcalBarrelHits",
         outputHitCollection="RecoEcalBarrelHits",
         readoutClass="EcalBarrelHits",
@@ -69,15 +68,16 @@ imcalreco = ImagingPixelReco("imcal_reco",
         **daq_setting)
 
 imcalcluster = ImagingTopoCluster("imcal_cluster",
-        OutputLevel=DEBUG,
+        # OutputLevel=DEBUG,
         inputHitCollection="RecoEcalBarrelHits",
         outputHitCollection="EcalBarrelClusterHits",
         localDistXY=[2.*units.mm, 2*units.mm],
         layerDistEtaPhi=[10*units.mrad, 10*units.mrad],
         neighbourLayersRange=2,
-        sectorDist=3.*units.cm)
+        sectorDist=3.*units.cm,
+        minClusterNhits=5)
 clusterreco = ImagingClusterReco("imcal_clreco",
-        OutputLevel=DEBUG,
+        # OutputLevel=DEBUG,
         inputHitCollection="EcalBarrelClusterHits",
         outputLayerCollection="EcalBarrelClustersLayers",
         outputClusterCollection="EcalBarrelClusters",
@@ -88,8 +88,7 @@ out.outputCommands = ["keep *"]
 ApplicationMgr(
     TopAlg=[podioinput, copier, calcopier, imcaldigi, imcalreco, imcalcluster, clusterreco, out],
     EvtSel='NONE',
-    # EvtMax=kwargs['nev'],
-    EvtMax=3,
+    EvtMax=kwargs['nev'],
     ExtSvc=[podioevent],
     OutputLevel=DEBUG
 )
diff --git a/benchmarks/imaging_ecal/scripts/energy_profile.py b/benchmarks/imaging_ecal/scripts/energy_profile.py
index d5b9b8aa..fff925ce 100644
--- a/benchmarks/imaging_ecal/scripts/energy_profile.py
+++ b/benchmarks/imaging_ecal/scripts/energy_profile.py
@@ -47,7 +47,7 @@ if __name__ == '__main__':
     dfe.loc[:, 'total_edep'] = dfe.groupby(['event', 'cluster'])['edep'].transform('sum')
     # dfe.loc[:, 'efrac'] = dfe['edep']/dfe['total_edep']
     dfe.loc[:, 'efrac'] = dfe['edep']/(args.energy*1000.)
-    dfe = dfe[dfe['cluster'] == 0]
+    # dfe = dfe[dfe['cluster'] == 0]
 
     os.makedirs(args.outdir, exist_ok=True)
 
-- 
GitLab