GooFit  v2.1.3
Public Member Functions | List of all members
GooFit::SpecialComplexSum Class Reference

#include <TddpPdf.h>

Inheritance diagram for GooFit::SpecialComplexSum:

Public Member Functions

__host__ __device__ ThreeComplex operator() (ThreeComplex one, ThreeComplex two)
 

Detailed Description

Definition at line 115 of file TddpPdf.h.

Member Function Documentation

◆ operator()()

__host__ __device__ ThreeComplex GooFit::SpecialComplexSum::operator() ( ThreeComplex  one,
ThreeComplex  two 
)
inline

Definition at line 117 of file TddpPdf.h.

117  {
118  return {thrust::get<0>(one) + thrust::get<0>(two),
119  thrust::get<1>(one) + thrust::get<1>(two),
120  thrust::get<2>(one) + thrust::get<2>(two),
121  thrust::get<3>(one) + thrust::get<3>(two),
122  thrust::get<4>(one) + thrust::get<4>(two),
123  thrust::get<5>(one) + thrust::get<5>(two)};
124  }

The documentation for this class was generated from the following file: