MINT2
Public Member Functions | List of all members
lessByAmpPairIntegral_ptr Class Reference

#include <AmpPair.h>

Public Member Functions

bool operator() (const AmpPair *a, const AmpPair *b) const
 

Detailed Description

Definition at line 122 of file AmpPair.h.

Member Function Documentation

◆ operator()()

bool lessByAmpPairIntegral_ptr::operator() ( const AmpPair a,
const AmpPair b 
) const

Definition at line 502 of file AmpPair.cpp.

502  {
503 
504  if(0 == a && 0==b) return false;
505  if(0 == a && 0!=b) return true;
506  if(0 !=a && 0==b) return false;
507  return abs(a->integral()) < abs(b->integral());
508 }
std::complex< double > integral() const
Definition: AmpPair.cpp:396

The documentation for this class was generated from the following files: