CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Static Public Member Functions
l1t::MicroGMTConfiguration Class Reference

#include <MicroGMTConfiguration.h>

Public Types

typedef GMTInputCaloSum CaloInput
 
typedef GMTInputCaloSumBxCollection CaloInputCollection
 
enum  input_t {
  PT, PT_COARSE, PHI, ETA,
  ETA_COARSE, QUALITY, DELTA_ETA_RED, DELTA_PHI_RED
}
 
typedef
RegionalMuonCandBxCollection 
InputCollection
 
typedef GMTInternalMuon InterMuon
 
typedef GMTInternalMuonCollection InterMuonCollection
 
typedef GMTInternalMuonList InterMuonList
 
typedef Muon OutMuon
 
typedef MuonBxCollection OutputCollection
 
typedef std::pair< input_t, int > PortType
 

Static Public Member Functions

static int calcGlobalPhi (int locPhi, tftype t, int proc)
 
static unsigned getTwosComp (const int signedInt, const int width)
 

Detailed Description

Definition at line 16 of file MicroGMTConfiguration.h.

Member Typedef Documentation

Definition at line 30 of file MicroGMTConfiguration.h.

Definition at line 31 of file MicroGMTConfiguration.h.

Definition at line 24 of file MicroGMTConfiguration.h.

Definition at line 27 of file MicroGMTConfiguration.h.

Definition at line 28 of file MicroGMTConfiguration.h.

Definition at line 29 of file MicroGMTConfiguration.h.

Definition at line 26 of file MicroGMTConfiguration.h.

Definition at line 25 of file MicroGMTConfiguration.h.

Definition at line 23 of file MicroGMTConfiguration.h.

Member Enumeration Documentation

Member Function Documentation

int l1t::MicroGMTConfiguration::calcGlobalPhi ( int  locPhi,
tftype  t,
int  proc 
)
static

Definition at line 13 of file MicroGMTConfiguration.cc.

References l1t::bmtf, and proc.

13  {
14  int globPhi = 0;
15  if (t == bmtf) {
16  // each BMTF processor corresponds to a 30 degree wedge = 48 in int-scale
17  globPhi = (proc) * 48 + locPhi;
18  // first processor starts at CMS phi = -15 degrees...
19  globPhi += 576-24;
20  // handle wrap-around (since we add the 576-24, the value will never be negative!)
21  globPhi = globPhi%576;
22  } else {
23  // all others correspond to 60 degree sectors = 96 in int-scale
24  globPhi = (proc) * 96 + locPhi;
25  // first processor starts at CMS phi = 15 degrees... Handle wrap-around with %:
26  globPhi = (globPhi + 24) % 576;
27  }
28  return globPhi;
29 }
TrainProcessor *const proc
Definition: MVATrainer.cc:101
unsigned l1t::MicroGMTConfiguration::getTwosComp ( const int  signedInt,
const int  width 
)
static

Definition at line 4 of file MicroGMTConfiguration.cc.

References create_public_lumi_plots::width.

Referenced by l1t::MicroGMTIsolationUnit::getCaloIndex().

4  {
5  if (signed_int >= 0) {
6  return (unsigned)signed_int;
7  }
8  int all_one = (1 << width)-1;
9  return ((-signed_int) ^ all_one) + 1;
10 }