forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cms-sw#30914 from dildick/from-CMSSW_11_1_X_2020-0…
…7-24-1100-check-valid-lcts-v3 Fix broken LCTs reported in HLT_L1SingleMu25 [11_1_X]
- Loading branch information
Showing
18 changed files
with
721 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#ifndef L1Trigger_CSCTriggerPrimitives_CSCLCTTools_h | ||
#define L1Trigger_CSCTriggerPrimitives_CSCLCTTools_h | ||
|
||
#include "L1Trigger/CSCCommonTrigger/interface/CSCConstants.h" | ||
|
||
#include <cmath> | ||
#include <tuple> | ||
|
||
namespace csctp { | ||
|
||
// CSC max strip & max wire | ||
unsigned get_csc_max_wire(int station, int ring); | ||
unsigned get_csc_max_halfstrip(int station, int ring); | ||
unsigned get_csc_max_quartstrip(int station, int ring); | ||
unsigned get_csc_max_eightstrip(int station, int ring); | ||
|
||
// CLCT min, max CFEB numbers | ||
std::pair<unsigned, unsigned> get_csc_min_max_cfeb(int station, int ring); | ||
|
||
// CSC min, max pattern | ||
std::pair<unsigned, unsigned> get_csc_min_max_pattern(bool isRun3); | ||
|
||
// CSC max quality | ||
unsigned get_csc_alct_max_quality(int station, int ring, bool isRun3); | ||
unsigned get_csc_clct_max_quality(); | ||
unsigned get_csc_lct_max_quality(); | ||
|
||
} // namespace csctp | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.