Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef FIREWORKS_MUONS_SEGMENTUTILS_H
#define FIREWORKS_MUONS_SEGMENTUTILS_H

namespace fireworks {
  void createSegment(
      int detector,               // DT,CSC, or RPC?
      bool matchedSegment,        // Is the segment a MuonSegmentMatch?
      float segmentLength,        // Nominal length of the segment along chamber thickness
      float segmentLimit,         // Limit of the segment extent (i.e. stay inside chamber along a certain dimension)
      float* segmentPosition,     // Segment position in local coordinates
      float* segmentDirection,    // Segment direction in local coordinates
      float* segmentInnerPoint,   // Line set connect this point...
      float* segmentOuterPoint);  // ...with this one
}

#endif