MINT2
Functions
FitAmpListBase.cpp File Reference
#include "Mint/FitAmpListBase.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 "TRandom3.h"
#include <iostream>

Go to the source code of this file.

Functions

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

Definition at line 578 of file FitAmpListBase.cpp.

578  {
579  FitAmpListBase fas(rhs);
580  fas.multiply(z);
581  return fas;
582 }

◆ operator *() [3/3]

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