MINT2
Functions
FitAmpList.cpp File Reference
#include "Mint/FitAmpList.h"
#include "Mint/FitAmplitude.h"
#include "Mint/MinuitParameterSet.h"
#include "Mint/NamedDecayTreeList.h"
#include "Mint/FitAmpSum.h"
#include "Mint/FitAmpIncoherentSum.h"
#include "Mint/FitAmpPairList.h"
#include "Mint/MultiTopHat.h"
#include <iostream>

Go to the source code of this file.

Functions

FitAmpList operator * (double r, const FitAmpList &rhs)
 
FitAmpList operator * (const complex< double > &z, const FitAmpList &rhs)
 
FitAmpList operator * (const counted_ptr< 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 complex< double > &  z,
const FitAmpList rhs 
)

Definition at line 306 of file FitAmpList.cpp.

306  {
307  FitAmpList fas(rhs);
308  fas.multiply(z);
309  return fas;
310 }

◆ operator *() [3/3]

FitAmpList operator * ( const counted_ptr< 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