Skip to content

Commit

Permalink
Code checks and code format
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Dildick committed Mar 14, 2020
1 parent 9b9ae26 commit d905340
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions DataFormats/CSCDigi/src/CSCCLCTDigi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@
#include <iomanip>
#include <iostream>

enum Pattern_Info {
NUM_LAYERS = 6,
CLCT_PATTERN_WIDTH = 11
};
enum Pattern_Info { NUM_LAYERS = 6, CLCT_PATTERN_WIDTH = 11 };

/// Constructors
CSCCLCTDigi::CSCCLCTDigi(const int valid,
Expand Down Expand Up @@ -99,10 +96,7 @@ int CSCCLCTDigi::getKeyStrip(int n) const {
}
}

int CSCCLCTDigi::getStrip() const
{
return strip_ & kHalfStripMask;
}
int CSCCLCTDigi::getStrip() const { return strip_ & kHalfStripMask; }

bool CSCCLCTDigi::getQuartStrip() const { return (strip_ >> kQuartStripShift) & kQuartStripMask; }

Expand Down

0 comments on commit d905340

Please sign in to comment.