Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

concept of new scoring output configuration #1932

Merged
merged 10 commits into from
Jan 7, 2025
48 changes: 48 additions & 0 deletions src/ThreeEditor/Simulation/Scoring/ScoringOutputTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,51 @@ export const MEDIUM_KEYWORD_OPTIONS = Object.keys(MEDIUM_KEYWORDS).reduce(
},
{} as Record<MEDIUM, MEDIUM>
);

export const SCORING_OPTIONS = {
FLUKA: {
DETECTOR: {
'1MeVNEq': {
configuration: new Set(['MEDIUM', 'PER_PRIMARY']),
modifiers: new Set([
'ANGLE',
'DEDX',
'E',
'EAMU',
'ENUC',
'MDEDX',
'TL',
'Z',
'Zeff',
'Z2Beta2',
'Zeff2Beta2'
])
},
'NKERMA': {
configuration: new Set(['PER_PRIMARY', 'N_K_MEDIUM']),
modifiers: new Set([
'ANGLE',
'DEDX',
'E',
'EAMU',
'ENUC',
'MDEDX',
'TL',
'Z',
'Zeff',
'Z2Beta2',
'Zeff2Beta2'
])
}
},
ZONE: {}
},
SHIELDHIT: {
DETECTOR: {},
ZONE: {
Fluence: {
modifiers: new Set(['E', 'ENUC'])
}
}
}
};
Loading