1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "DataFormats/MuonReco/interface/DYTInfo.h"
using namespace reco;
DYTInfo::DYTInfo() {
NStUsed_ = 0;
DYTEstimators_.assign(4, -1);
UsedStations_.assign(4, false);
IdChambers_.assign(4, DetId());
Thresholds_.assign(4, -1);
}
DYTInfo::~DYTInfo() {}
void DYTInfo::CopyFrom(const DYTInfo &dytInfo) {
setNStUsed(dytInfo.NStUsed());
setDYTEstimators(dytInfo.DYTEstimators());
setUsedStations(dytInfo.UsedStations());
setIdChambers(dytInfo.IdChambers());
setThresholds(dytInfo.Thresholds());
}
|