CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_5_3_0/src/RecoLocalMuon/RPCRecHit/src/DTSegtoRPC.cc File Reference

#include <Geometry/RPCGeometry/interface/RPCGeometry.h>
#include <Geometry/DTGeometry/interface/DTGeometry.h>
#include <DataFormats/DTRecHit/interface/DTRecSegment4DCollection.h>
#include <Geometry/CommonDetUnit/interface/GeomDet.h>
#include <Geometry/Records/interface/MuonGeometryRecord.h>
#include <Geometry/CommonTopologies/interface/RectangularStripTopology.h>
#include <FWCore/Framework/interface/EDAnalyzer.h>
#include "FWCore/Framework/interface/ESHandle.h"
#include <Geometry/RPCGeometry/interface/RPCGeomServ.h>
#include <DataFormats/RPCRecHit/interface/RPCRecHit.h>
#include <DataFormats/RPCRecHit/interface/RPCRecHitCollection.h>
#include <RecoLocalMuon/RPCRecHit/interface/DTSegtoRPC.h>
#include <ctime>

Go to the source code of this file.

Functions

int distsector (int sector1, int sector2)
int distwheel (int wheel1, int wheel2)

Function Documentation

int distsector ( int  sector1,
int  sector2 
)

Definition at line 53 of file DTSegtoRPC.cc.

References abs.

Referenced by DTSegtoRPC::DTSegtoRPC().

                                       {
  if(sector1==13) sector1=4;
  if(sector1==14) sector1=10;
  
  if(sector2==13) sector2=4;
  if(sector2==14) sector2=10;
  
  int distance = std::abs(sector1 - sector2);
  if(distance>6) distance = 12-distance;
  return distance;
}
int distwheel ( int  wheel1,
int  wheel2 
)

Definition at line 65 of file DTSegtoRPC.cc.

References abs.

Referenced by DTSegtoRPC::DTSegtoRPC().

                                    {
  int distance = std::abs(wheel1 - wheel2);
  return distance;
}