Skip to content
Snippets Groups Projects

Update reco options

Merged Sylvester Joosten requested to merge update_reco_options into master
13 files
+ 408
94
Compare changes
  • Side-by-side
  • Inline
Files
13
@@ -22,7 +22,7 @@ input_sim_file = str(os.environ["JUGGLER_SIM_FILE"])
output_rec_file = str(os.environ["JUGGLER_REC_FILE"])
n_events = str(os.environ["JUGGLER_N_EVENTS"])
geo_service = GeoSvc("GeoSvc", detectors=["{}.xml".format(detector_name)])
geo_service = GeoSvc("GeoSvc", detectors=["{}.xml".format(detector_name)], OutputLevel=INFO)
podioevent = EICDataSvc("EventDataSvc", inputs=[input_sim_file])
from Configurables import PodioInput
@@ -70,7 +70,7 @@ ecal_reco = EMCalReconstruction("ecal_reco",
ec_barrel_cluster = IslandCluster("ec_barrel_cluster",
inputHitCollection="RecEcalBarrelHits",
outputClusterCollection="EcalBarrelClusters",
outputClusterCollection="EcalBarrelProtoClusters",
splitHitCollection="splitEcalBarrelHitCollection",
minClusterCenterEdep=1*units.MeV,
groupRange=2.0,
@@ -78,7 +78,8 @@ ec_barrel_cluster = IslandCluster("ec_barrel_cluster",
crystal_ec_cluster = IslandCluster("crystal_ec_cluster",
inputHitCollection="RecoEcalHits",
outputClusterCollection="EcalClusters",
outputClusterCollection="EcalProtoClusters",
splitHitCollection="splitEcalHitCollection",
minClusterCenterEdep=30*units.MeV,
groupRange=2.0,
OutputLevel=DEBUG)
@@ -89,12 +90,14 @@ simple_cluster = SimpleClustering("simple_cluster",
OutputLevel=DEBUG)
ec_barrel_clusterreco = RecoCoG("ec_barrel_clusterreco",
clusterCollection="EcalBarrelClusters",
inputClusterCollection="EcalBarrelProtoClusters",
outputClusterCollection="EcalBarrelClusters",
logWeightBase=6.2,
samplingFraction=sf)
clusterreco = RecoCoG("cluster_reco",
clusterCollection="EcalClusters",
inputClusterCollection="EcalProtoClusters",
outputClusterCollection="EcalClusters",
logWeightBase=4.2,
moduleDimZName="CrystalBox_z_length",
samplingFraction=sf,
Loading