File indexing completed on 2023-03-17 10:50:12
0001
0002 #include <algorithm>
0003
0004 #include "DataFormats/JetReco/interface/FFTJetProducerSummary.h"
0005
0006 namespace reco {
0007 FFTJetProducerSummary::FFTJetProducerSummary(const std::vector<double>& thresholds,
0008 const std::vector<unsigned>& levelOccupancy,
0009 const math::XYZTLorentzVector& unclustered,
0010 const std::vector<CandidatePtr>& constituents,
0011 double unused,
0012 double minScale,
0013 double maxScale,
0014 double scaleUsed,
0015 unsigned preclustersFound,
0016 unsigned iterationsPerformed,
0017 bool converged)
0018 : levelOccupancy_(levelOccupancy),
0019 unclustered_(unclustered),
0020 unclusConstituents_(constituents),
0021 unused_(unused),
0022 minScale_(minScale),
0023 maxScale_(maxScale),
0024 scaleUsed_(scaleUsed),
0025 preclustersFound_(preclustersFound),
0026 iterationsPerformed_(iterationsPerformed),
0027 converged_(converged) {
0028 thresholds_.resize(thresholds.size());
0029 std::copy(thresholds.begin(), thresholds.end(), thresholds_.begin());
0030 }
0031 }