-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adds StMuFwdTrack to MuDST, - minor updates to StFwdTrackMaker (control material effects + debug tools/ttree) - Add StRoot/StFwdUtils : contains example fwd analysis maker --------- Co-authored-by: Dmitri Smirnov <[email protected]>
- Loading branch information
Showing
27 changed files
with
1,434 additions
and
252 deletions.
There are no files selected for viewing
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
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 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 |
---|---|---|
@@ -1,11 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<config> | ||
<Output url="fast_track.root" /> | ||
<Geometry>fGeom.root</Geometry> | ||
<Source ftt="GEANT" fttFilter="true" /> | ||
<Source ftt="GEANT" fttFilter="false" /> | ||
|
||
<!-- Missing <TrackFinder> means use MC Track finding --> | ||
|
||
<TrackFitter refitSi="true" mcSeed="true" refitGBL="true" > | ||
<Vertex sigmaXY="0.002" sigmaZ="1.0" includeInFit="true" smearMcVertex="true" /> | ||
<TrackFitter refitSi="true" mcSeed="true" refitGBL="false" MaterialEffects="false" > | ||
<MaterialEffects DebugLvl="0" > | ||
<EnergyLossBetheBloch>false</EnergyLossBetheBloch> | ||
<NoiseBetheBloch>false</NoiseBetheBloch> | ||
<NoiseCoulomb>false</NoiseCoulomb> | ||
<EnergyLossBrems>false</EnergyLossBrems> | ||
<NoiseBrems>false</NoiseBrems> | ||
<ignoreBoundariesBetweenEqualMaterials>true</ignoreBoundariesBetweenEqualMaterials> | ||
</MaterialEffects> | ||
<Vertex sigmaXY="0.001" sigmaZ="0.1" includeInFit="true" smearMcVertex="false" /> | ||
</TrackFitter> | ||
</config> |
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
Oops, something went wrong.