File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
GeneratorInterface/LHEInterface/src Expand file tree Collapse file tree 1 file changed +7
-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
You can’t perform that action at this time.
0 commit comments