CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
SiStripMatchedRecHit2D.h File Reference
#include "DataFormats/TrackerRecHit2D/interface/SiStripRecHit2D.h"

Go to the source code of this file.

Classes

class  GCC11_FINAL
 Our base class. More...
 

Functions

bool sharesClusters (SiStripMatchedRecHit2D const &h1, SiStripMatchedRecHit2D const &h2, TrackingRecHit::SharedInputType what)
 

Function Documentation

bool sharesClusters ( SiStripMatchedRecHit2D const &  h1,
SiStripMatchedRecHit2D const &  h2,
TrackingRecHit::SharedInputType  what 
)
inline

Definition at line 63 of file SiStripMatchedRecHit2D.h.

References TrackingRecHit::all.

64  {
65  bool mono = h1.monoClusterRef()== h2.monoClusterRef();
66  bool stereo = h1.stereoClusterRef()== h2.stereoClusterRef();
67 
68  return (what==TrackingRecHit::all) ? (mono&&stereo) : (mono||stereo);
69 
70 }