CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
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 funct::abs().

Referenced by DTSegtoRPC::DTSegtoRPC().

53  {
54  if(sector1==13) sector1=4;
55  if(sector1==14) sector1=10;
56 
57  if(sector2==13) sector2=4;
58  if(sector2==14) sector2=10;
59 
60  int distance = std::abs(sector1 - sector2);
61  if(distance>6) distance = 12-distance;
62  return distance;
63 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int distwheel ( int  wheel1,
int  wheel2 
)

Definition at line 65 of file DTSegtoRPC.cc.

References funct::abs().

Referenced by DTSegtoRPC::DTSegtoRPC().

65  {
66  int distance = std::abs(wheel1 - wheel2);
67  return distance;
68 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22