-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #706 from sophiemiddleton/CaloCalibGun
Calo Source Calib + CaloCalibGun
- Loading branch information
Showing
15 changed files
with
1,378 additions
and
731 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// Driver FCL for the calocalibration (Reconstruct and truth) | ||
#include "fcl/minimalMessageService.fcl" | ||
#include "fcl/standardProducers.fcl" | ||
#include "fcl/standardServices.fcl" | ||
#include "CaloMC/fcl/prolog.fcl" | ||
#include "CaloReco/fcl/prolog.fcl" | ||
#include "CaloCluster/fcl/prolog.fcl" | ||
#include "CommonMC/fcl/prolog.fcl" | ||
#include "EventGenerator/fcl/prolog.fcl" | ||
#include "Production/JobConfig/digitize/prolog.fcl" | ||
process_name: CaloCalibExample | ||
|
||
source: { | ||
module_type: EmptyEvent | ||
maxEvents : 1000 | ||
} | ||
|
||
|
||
services : @local::Services.SimAndReco | ||
services.TFileService : { fileName : "nts.owner.CaloCalib.version.sequencer.root" } | ||
services.SeedService.baseSeed : 99 | ||
services.SeedService.maxUniqueEngines : 20 | ||
|
||
physics: { | ||
|
||
producers: { | ||
|
||
generate: { | ||
module_type : CaloCalibGun | ||
cosmin : -1.0 | ||
cosmax : 1.0 | ||
phimin : 0.0 | ||
phimax : 2.0 | ||
tmin : 500. | ||
tmax : 1694. | ||
} | ||
|
||
g4run : @local::g4run | ||
|
||
protonTimeMap : { module_type : GenerateProtonTimes } | ||
muonTimeMap : { module_type : GenerateMuonLife } | ||
EWMProducer : { module_type : EventWindowMarkerProducer } | ||
FindMCPrimary : { module_type : FindMCPrimary }//@local::CommonMC.FindMCPrimary | ||
@table::EventGenerator.producers | ||
@table::Digitize.producers | ||
@table::CommonMC.producers | ||
@table::CaloMC.producers | ||
@table::CaloReco.producers | ||
@table::CaloCluster.producers | ||
@table::CaloMC.TruthProducers | ||
|
||
} | ||
|
||
filters: { | ||
@table::Digitize.filters | ||
} | ||
|
||
analyzers: { | ||
|
||
CaloExample: { | ||
module_type : CaloCalibAna | ||
caloHitCollection : CaloHitMaker | ||
caloClusterCollection : CaloClusterMaker | ||
caloHitTruth : CaloHitTruthMatch | ||
vdCollection : virtualdetector | ||
caloClusterTruth : CaloClusterTruthMatch | ||
|
||
} | ||
|
||
} | ||
|
||
p1: [ generate, g4run, protonTimeMap, muonTimeMap, EWMProducer, | ||
@sequence::CaloMC.StepSim, | ||
@sequence::CommonMC.DigiSim, | ||
@sequence::CaloMC.DigiSim, | ||
@sequence::CaloReco.Reco, | ||
@sequence::CaloCluster.Reco, | ||
@sequence::CaloMC.TruthMatch | ||
] | ||
|
||
e1: [CaloExample] | ||
|
||
trigger_paths: [p1] | ||
end_paths: [e1] | ||
} | ||
|
||
physics.producers.CaloHitTruthMatch.primaryParticle : "generate" | ||
physics.producers.FindMCPrimary.PrimaryProcess : "mu2eCaloCalib" | ||
|
||
physics.producers.EWMProducer.SpillType : 0 | ||
physics.producers.muonTimeMap.applyToGenIds : [ "StoppedParticleReactionGun", "dioTail", "ExternalRMC", "InternalRMC", | ||
"MuCapProtonGenTool", "MuCapDeuteronGenTool", "DIOGenTool", "MuCapNeutronGenTool", "MuCapPhotonGenTool", "MuCapGammaRayGenTool" ] | ||
physics.producers.protonTimeMap.ignoredGenIds : ["unknown", "particleGun", "cosmicToy", "cosmicDYB", "cosmic", "CosmicCRY", "pbarFlat", "CosmicCORSIKA"] | ||
|
||
physics.producers.CaloShowerStepFromStepPt.physVolInfoInput : "g4run" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.