File indexing completed on 2024-04-06 12:04:48
0001 #include "DataFormats/MuonReco/interface/MuonRecHitCluster.h"
0002
0003 reco::MuonRecHitCluster::MuonRecHitCluster(const math::RhoEtaPhiVectorF position,
0004 const int size,
0005 const int nStation,
0006 const float avgStation,
0007 const float time,
0008 const float timeSpread,
0009 const int nME11,
0010 const int nME12,
0011 const int nME41,
0012 const int nME42,
0013 const int nMB1,
0014 const int nMB2)
0015 : position_(position),
0016 size_(size),
0017 nStation_(nStation),
0018 avgStation_(avgStation),
0019 time_(time),
0020 timeSpread_(timeSpread),
0021 nME11_(nME11),
0022 nME12_(nME12),
0023 nME41_(nME41),
0024 nME42_(nME42),
0025 nMB1_(nMB1),
0026 nMB2_(nMB2) {}