src
L1Trigger
TrackTrigger
src
TTStubAlgorithm_cbc3.cc
Go to the documentation of this file.
1
10
#include "
L1Trigger/TrackTrigger/interface/TTStubAlgorithm_cbc3.h
"
11
13
template
<>
14
void
TTStubAlgorithm_cbc3<Ref_Phase2TrackerDigi_>::PatternHitCorrelation
(
15
bool
&aConfirmation,
16
int
&aDisplacement,
17
int
&anOffset,
18
float
&anHardBend,
19
const
TTStub<Ref_Phase2TrackerDigi_>
&aTTStub)
const
20
21
{
22
/*
25
MeasurementPoint mp0 = aTTStub.getClusterRef(0)->findAverageLocalCoordinates();
26
MeasurementPoint mp1 = aTTStub.getClusterRef(1)->findAverageLocalCoordinates();
27
29
StackedTrackerDetId stDetId( aTTStub.getDetId() );
30
31
//bool isPS = TTStubAlgorithm< Ref_Phase2TrackerDigi_ >::theStackedTracker->isPSModule( stDetId );
32
34
const GeomDetUnit* det0 = TTStubAlgorithm< Ref_Phase2TrackerDigi_ >::theStackedTracker->idToDetUnit( stDetId, 0 );
35
37
const PixelGeomDetUnit* pix0 = dynamic_cast< const PixelGeomDetUnit* >( det0 );
38
const PixelTopology* top0 = dynamic_cast< const PixelTopology* >( &(pix0->specificTopology()) );
39
41
int myPosition = mp0.x();
42
44
int chipSize = top0->rowsperroc();
45
int asicNumber = myPosition / chipSize; /// ASIC in module
46
int partitionSize = ceil( float(chipSize) / float( TTStubAlgorithm< Ref_Phase2TrackerDigi_ >::theStackedTracker->getPartitionsPerRoc() ) );
47
int partitionNumber = (myPosition % chipSize) / partitionSize; /// Partition in ASIC
48
50
anOffset = TTStubAlgorithm< Ref_Phase2TrackerDigi_ >::theStackedTracker->getASICOffset( stDetId, asicNumber, partitionNumber );
51
53
int aPosition = 2 * mp0.x();
54
int aBend = (2 * mp1.x()) - aPosition - anOffset;
55
57
aDisplacement = (2 * mp1.x()) - aPosition;
58
60
aConfirmation = ( (abs(4 * aBend - 1)) <= (2 * TTStubAlgorithm< Ref_Phase2TrackerDigi_ >::theStackedTracker->getDetUnitWindow(stDetId) ) );
61
63
if ( !mPerformZMatching2S ) // && !isPS
64
return;
65
66
//if ( !mPerformZMatchingPS && isPS )
67
// return;
68
70
const GeomDetUnit* det1 = TTStubAlgorithm< Ref_Phase2TrackerDigi_ >::theStackedTracker->idToDetUnit( stDetId, 1 );
71
const PixelGeomDetUnit* pix1 = dynamic_cast< const PixelGeomDetUnit* >( det1 );
72
const PixelTopology* top1 = dynamic_cast< const PixelTopology* >( &(pix1->specificTopology()) );
73
int cols0 = top0->ncolumns();
74
int cols1 = top1->ncolumns();
75
int ratio = cols0/cols1; /// This assumes the ratio is integer!
76
int segment0 = floor( mp0.y() / ratio );
77
if ( segment0 != floor( mp1.y() ) )
78
aConfirmation = false;
79
*/
80
}
TTStubAlgorithm_cbc3::PatternHitCorrelation
void PatternHitCorrelation(bool &aConfirmation, int &aDisplacement, int &anOffset, float &anHardBend, const TTStub< T > &aTTStub) const override
Matching operations.
TTStubAlgorithm_cbc3.h
TTStub
Class to store the L1 Track Trigger stubs.
Definition:
TTStub.h:22
Generated for CMSSW Reference Manual by
1.8.14