File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
GeneratorInterface/LHEInterface/src
RecoTracker/FinalTrackSelectors/interface Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,13 @@ static int skipWhitespace(std::istream &in) {
3434}
3535
3636namespace lhef {
37+ const bool operator ==(const LHERunInfo::Process &lhs, const LHERunInfo::Process &rhs) {
38+ return (lhs.process () == rhs.process ());
39+ }
40+
41+ const bool operator <(const LHERunInfo::Process &lhs, const LHERunInfo::Process &rhs) {
42+ return (lhs.process () < rhs.process ());
43+ }
3744
3845 LHERunInfo::LHERunInfo (std::istream &in) {
3946 in >> heprup.IDBMUP .first >> heprup.IDBMUP .second >> heprup.EBMUP .first >> heprup.EBMUP .second >>
@@ -528,12 +535,4 @@ namespace lhef {
528535 return std::make_pair (pdfA, pdfB);
529536 }
530537
531- const bool operator ==(const LHERunInfo::Process &lhs, const LHERunInfo::Process &rhs) {
532- return (lhs.process () == rhs.process ());
533- }
534-
535- const bool operator <(const LHERunInfo::Process &lhs, const LHERunInfo::Process &rhs) {
536- return (lhs.process () < rhs.process ());
537- }
538-
539538} // namespace lhef
Original file line number Diff line number Diff line change 11#ifndef RecoTracker_FinalTrackSelectors_TrackMVAClassifierBase_h
22#define RecoTracker_FinalTrackSelectors_TrackMVAClassifierBase_h
33
4+ #include " DataFormats/TrackReco/interface/Track.h"
45#include " DataFormats/TrackReco/interface/TrackFwd.h"
56#include " DataFormats/VertexReco/interface/VertexFwd.h"
67#include " DataFormats/BeamSpot/interface/BeamSpot.h"
You can’t perform that action at this time.
0 commit comments