Skip to content
Snippets Groups Projects
Commit 62e00f42 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: re-enable barrel hcal clustering

parent 7f1ff2c1
No related branches found
No related tags found
1 merge request!192fix: re-enable barrel hcal clustering
...@@ -777,6 +777,7 @@ cb_hcal_reco = CalHitReco( ...@@ -777,6 +777,7 @@ cb_hcal_reco = CalHitReco(
thresholdFactor=5.0, thresholdFactor=5.0,
samplingFraction=cb_hcal_sf, samplingFraction=cb_hcal_sf,
readoutClass="HcalBarrelHits", readoutClass="HcalBarrelHits",
sectorField="sector",
**cb_hcal_daq, **cb_hcal_daq,
) )
algorithms.append(cb_hcal_reco) algorithms.append(cb_hcal_reco)
...@@ -786,10 +787,10 @@ cb_hcal_merger = CalHitsMerger( ...@@ -786,10 +787,10 @@ cb_hcal_merger = CalHitsMerger(
inputHitCollection=cb_hcal_reco.outputHitCollection, inputHitCollection=cb_hcal_reco.outputHitCollection,
outputHitCollection="HcalBarrelMergedHits", outputHitCollection="HcalBarrelMergedHits",
readoutClass="HcalBarrelHits", readoutClass="HcalBarrelHits",
fields=["tower"], fields=["tile"],
fieldRefNumbers=[0], fieldRefNumbers=[0],
) )
#algorithms.append(cb_hcal_merger) algorithms.append(cb_hcal_merger)
cb_hcal_cl = IslandCluster( cb_hcal_cl = IslandCluster(
"cb_hcal_cl", "cb_hcal_cl",
...@@ -799,7 +800,7 @@ cb_hcal_cl = IslandCluster( ...@@ -799,7 +800,7 @@ cb_hcal_cl = IslandCluster(
minClusterCenterEdep=30.0 * MeV, minClusterCenterEdep=30.0 * MeV,
localDistXY=[15.0 * cm, 15.0 * cm], localDistXY=[15.0 * cm, 15.0 * cm],
) )
#algorithms.append(cb_hcal_cl) algorithms.append(cb_hcal_cl)
cb_hcal_clreco = RecoCoG( cb_hcal_clreco = RecoCoG(
"cb_hcal_clreco", "cb_hcal_clreco",
...@@ -809,7 +810,7 @@ cb_hcal_clreco = RecoCoG( ...@@ -809,7 +810,7 @@ cb_hcal_clreco = RecoCoG(
outputAssociations="HcalBarrelClustersAssoc", outputAssociations="HcalBarrelClustersAssoc",
logWeightBase=6.2, logWeightBase=6.2,
) )
#algorithms.append(cb_hcal_clreco) algorithms.append(cb_hcal_clreco)
# Hcal Hadron Endcap # Hcal Hadron Endcap
ci_hcal_daq = calo_daq["hcal_pos_endcap"] ci_hcal_daq = calo_daq["hcal_pos_endcap"]
...@@ -1078,7 +1079,7 @@ match_clusters = MatchClusters( ...@@ -1078,7 +1079,7 @@ match_clusters = MatchClusters(
str(barrel_clus_merger.outputClusters), str(barrel_clus_merger.outputClusters),
str(ci_ecal_clmerger.outputClusters), str(ci_ecal_clmerger.outputClusters),
str(ce_hcal_clreco.outputClusterCollection), str(ce_hcal_clreco.outputClusterCollection),
#str(cb_hcal_clreco.outputClusterCollection), str(cb_hcal_clreco.outputClusterCollection),
str(ci_hcal_clreco.outputClusterCollection), str(ci_hcal_clreco.outputClusterCollection),
], ],
inputClustersAssoc=[ inputClustersAssoc=[
...@@ -1086,7 +1087,7 @@ match_clusters = MatchClusters( ...@@ -1086,7 +1087,7 @@ match_clusters = MatchClusters(
str(barrel_clus_merger.outputAssociations), str(barrel_clus_merger.outputAssociations),
str(ci_ecal_clmerger.outputAssociations), str(ci_ecal_clmerger.outputAssociations),
str(ce_hcal_clreco.outputAssociations), str(ce_hcal_clreco.outputAssociations),
#str(cb_hcal_clreco.outputAssociations), str(cb_hcal_clreco.outputAssociations),
str(ci_hcal_clreco.outputAssociations), str(ci_hcal_clreco.outputAssociations),
], ],
outputParticles="ReconstructedParticles", outputParticles="ReconstructedParticles",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment