CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
CALayerPair Struct Reference

#include <CAGraph.h>

Public Member Functions

 CALayerPair (int a, int b)
 
bool operator== (const CALayerPair &otherLayerPair)
 

Public Attributes

std::array< unsigned int, 2 > theFoundCells = {{0, 0}}
 
std::array< int, 2 > theLayers
 

Detailed Description

Definition at line 33 of file CAGraph.h.

Constructor & Destructor Documentation

CALayerPair::CALayerPair ( int  a,
int  b 
)
inline

Definition at line 35 of file CAGraph.h.

References a, and b.

37  {
38  theLayers[0] = a;
39  theLayers[1] = b;
40  }
std::array< int, 2 > theLayers
Definition: CAGraph.h:47
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121

Member Function Documentation

bool CALayerPair::operator== ( const CALayerPair otherLayerPair)
inline

Definition at line 42 of file CAGraph.h.

References theLayers.

42  {
43  return (theLayers[0] == otherLayerPair.theLayers[0]) &&
44  (theLayers[1] == otherLayerPair.theLayers[1]);
45  }
std::array< int, 2 > theLayers
Definition: CAGraph.h:47

Member Data Documentation

std::array<unsigned int, 2> CALayerPair::theFoundCells = {{0, 0}}

Definition at line 48 of file CAGraph.h.

std::array<int, 2> CALayerPair::theLayers

Definition at line 47 of file CAGraph.h.

Referenced by operator==().