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

Provide direct access to multiple fine-grain bits in HCAL TP. #15970

Merged
merged 1 commit into from Sep 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion DataFormats/HcalDigi/interface/HcalTriggerPrimitiveDigi.h
Expand Up @@ -34,7 +34,7 @@ class HcalTriggerPrimitiveDigi {
/// Full "Sample of Interest"
const HcalTriggerPrimitiveSample& t0() const { return data_[presamples()]; }
/// Fine-grain bit for the "Sample of Interest"
bool SOI_fineGrain() const { return t0().fineGrain(); }
bool SOI_fineGrain(int i=0) const { return t0().fineGrain(i); }
/// Compressed ET for the "Sample of Interest"
int SOI_compressedEt() const { return t0().compressedEt(); }

Expand Down