Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:48

0001 #include "DataFormats/MuonReco/interface/DYTInfo.h"
0002 using namespace reco;
0003 
0004 DYTInfo::DYTInfo() {
0005   NStUsed_ = 0;
0006   DYTEstimators_.assign(4, -1);
0007   UsedStations_.assign(4, false);
0008   IdChambers_.assign(4, DetId());
0009   Thresholds_.assign(4, -1);
0010 }
0011 
0012 DYTInfo::~DYTInfo() {}
0013 
0014 void DYTInfo::CopyFrom(const DYTInfo &dytInfo) {
0015   setNStUsed(dytInfo.NStUsed());
0016   setDYTEstimators(dytInfo.DYTEstimators());
0017   setUsedStations(dytInfo.UsedStations());
0018   setIdChambers(dytInfo.IdChambers());
0019   setThresholds(dytInfo.Thresholds());
0020 }