-
Notifications
You must be signed in to change notification settings - Fork 41
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
CAT Hackathon: retrieving normalization for skimmed files #78
base: hackathon
Are you sure you want to change the base?
Conversation
@@ -39,9 +41,9 @@ def __init__(self, fname, **kwargs): | |||
self.year = kwargs.get('year', 2022 ) # integer, e.g. 2017, 2018 | |||
self.era = kwargs.get('era', '2022postEE' ) # string, e.g. '2017', 'UL2017' | |||
self.ees = kwargs.get('ees', 1.0 ) # electron energy scale | |||
self.tes = kwargs.get('tes', None ) # tau energy scale; if None, recommended values are applied |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jmalvaso @pmastrap In general it's better to not change these default settings if it's for your own personal reasons, because it might break other people's setups. If you want to disable this, you need to do so via your sample list or the way you define the channel. (Anyway, I'll try to make this easier / more clear in the new configuration paradigm.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@IzaakWN Should I restore these setting to the default value and create a new pull request or, for this time, it is fine like this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest to just add a commit that undoes changing these defaults if that's okay with you?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's fine. I will do it asap
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@IzaakWN I think I added the commit in the proper way, but please let me know if it's ok now
No description provided.