MINT2
Classes | Functions
FitAmpListBase.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  FitAmpListBase
 

Functions

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

Function Documentation

◆ operator *() [1/3]

FitAmpListBase operator * ( double  r,
const FitAmpListBase rhs 
)

Definition at line 573 of file FitAmpListBase.cpp.

573  {
574  FitAmpListBase fas(rhs);
575  fas.multiply(r);
576  return fas;
577 }

◆ operator *() [2/3]

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

◆ operator *() [3/3]

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

Definition at line 583 of file FitAmpListBase.cpp.

584  {
585  FitAmpListBase fas(rhs);
586  fas.multiply(irc);
587  return fas;
588 }

◆ operator<<()

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

Definition at line 590 of file FitAmpListBase.cpp.

590  {
591  fal.print(os);
592  return os;
593 }
virtual void print(std::ostream &os=std::cout) const