Beispiel #1
0
std::complex<double> AmpPair::add(const counted_ptr<IDalitzEvent>& evtPtr
		       , double weight
		       , double efficiency
		       ){
  return add(evtPtr.get(), weight, efficiency);
}
std::vector<int> AssociatingDecayTree::addAssociations(counted_ptr<AssociatedDecayTree> ctree) const{
  return addAssociations(ctree.get());
}
Beispiel #3
0
bool Log::IsInLog(counted_ptr<ILogEntry> ptr) {
    if (ptr.get()->GetIndex() == Log::idx_to_find_) {
        return true;
    }
    return false;
}