MINT2
Classes | Namespaces | Functions
FitAmpList.h File Reference
#include <complex>
#include <iostream>
#include <ostream>
#include "Mint/counted_ptr.h"
#include "Mint/DalitzBoxSet.h"
#include "Mint/DalitzBWBoxSet.h"
#include "Mint/FitAmpPairList.h"
#include "Mint/IReturnRealForEvent.h"
#include "Mint/IReturnComplexForEvent.h"
#include "Mint/IIntegrationCalculator.h"
#include "Mint/IntegCalculator.h"
#include "Mint/FitAmpListBase.h"

Go to the source code of this file.

Classes

class  FitAmpList
 

Namespaces

 MINT
 

Functions

FitAmpList operator * (double r, const FitAmpList &rhs)
 
FitAmpList operator * (const std::complex< double > &z, const FitAmpList &rhs)
 
FitAmpList operator * (const MINT::counted_ptr< MINT::IReturnComplex > &irc, const FitAmpList &rhs)
 
std::ostream & operator<< (std::ostream &os, const FitAmpList &fal)
 

Function Documentation

◆ operator *() [1/3]

FitAmpList operator * ( double  r,
const FitAmpList rhs 
)

Definition at line 301 of file FitAmpList.cpp.

301  {
302  FitAmpList fas(rhs);
303  fas.multiply(r);
304  return fas;
305 }

◆ operator *() [2/3]

FitAmpList operator * ( const std::complex< double > &  z,
const FitAmpList rhs 
)

◆ operator *() [3/3]

FitAmpList operator * ( const MINT::counted_ptr< MINT::IReturnComplex > &  irc,
const FitAmpList rhs 
)

Definition at line 311 of file FitAmpList.cpp.

312  {
313  FitAmpList fas(rhs);
314  fas.multiply(irc);
315  return fas;
316 }

◆ operator<<()

std::ostream& operator<< ( std::ostream &  os,
const FitAmpList fal 
)

Definition at line 318 of file FitAmpList.cpp.

318  {
319  fal.print(os);
320  return os;
321 }
virtual void print(std::ostream &os=std::cout) const