File indexing completed on 2024-04-06 12:04:02
0001
0002
0003
0004
0005
0006
0007 #include "DataFormats/DTRecHit/interface/DTChamberRecSegment2D.h"
0008
0009
0010 DTChamberRecSegment2D::DTChamberRecSegment2D(const DTChamberId id, const std::vector<DTRecHit1D> &hits)
0011 : DTRecSegment2D(id, hits) {}
0012
0013
0014 DTChamberRecSegment2D::DTChamberRecSegment2D(const DTChamberId id,
0015 LocalPoint &position,
0016 LocalVector &direction,
0017 AlgebraicSymMatrix &covMatrix,
0018 double chi2,
0019 std::vector<DTRecHit1D> &hits1D)
0020 : DTRecSegment2D(id, position, direction, covMatrix, chi2, hits1D) {}
0021
0022 DTChamberRecSegment2D *DTChamberRecSegment2D::clone() const { return new DTChamberRecSegment2D(*this); }
0023
0024 DTChamberId DTChamberRecSegment2D::chamberId() const { return DTChamberId(geographicalId()); }