Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:49

0001 #ifndef FIREWORKS_MUONS_SEGMENTUTILS_H
0002 #define FIREWORKS_MUONS_SEGMENTUTILS_H
0003 
0004 namespace fireworks {
0005   void createSegment(
0006       int detector,               // DT,CSC, or RPC?
0007       bool matchedSegment,        // Is the segment a MuonSegmentMatch?
0008       float segmentLength,        // Nominal length of the segment along chamber thickness
0009       float segmentLimit,         // Limit of the segment extent (i.e. stay inside chamber along a certain dimension)
0010       float* segmentPosition,     // Segment position in local coordinates
0011       float* segmentDirection,    // Segment direction in local coordinates
0012       float* segmentInnerPoint,   // Line set connect this point...
0013       float* segmentOuterPoint);  // ...with this one
0014 }
0015 
0016 #endif