Skip to content

Commit

Permalink
Merge pull request #34662 from CMSTrackerDPG/fix_DigiPacking
Browse files Browse the repository at this point in the history
Reserve one bit for the flag - bugfix for PR #34509
  • Loading branch information
cmsbuild committed Jul 28, 2021
2 parents 29e23c6 + 8cd0049 commit e64a545
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -69,7 +69,7 @@ class PixelChannelIdentifier {
public:
constexpr static Packing packing() { return Packing(8, 9, 4, 11); }

constexpr static Packing thePacking = {11, 10, 0, 10};
constexpr static Packing thePacking = {11, 10, 1, 10};
};

#endif

0 comments on commit e64a545

Please sign in to comment.