/home/bes3soft/bes3soft/Boss/7.0.2/dist/7.0.2/Generator/BesEvtGen/BesEvtGen-00-03-58/src/EvtGen/EvtGenBase/EvtEvalHelAmp.hh

Go to the documentation of this file.
00001 //--------------------------------------------------------------------------
00002 //
00003 // Environment:
00004 //      This software is part of the EvtGen package developed jointly
00005 //      for the BaBar and CLEO collaborations.  If you use all or part
00006 //      of it, please give an appropriate acknowledgement.
00007 //
00008 // Copyright Information: See EvtGen/COPYRIGHT
00009 //      Copyright (C) 2002      Caltech
00010 //
00011 // Module: EvtGen/EvtEvalHelAmp.hh
00012 //
00013 // Description: Class for evaluation of amplitudes in the 
00014 //              helicity formalism.
00015 //             
00016 //
00017 // Modification history:
00018 //
00019 //    RYD      October 24, 2002         Module created
00020 //
00021 //------------------------------------------------------------------------
00022 
00023 #ifndef EVTEVALHELAMP_HH
00024 #define EVTEVALHELAMP_HH
00025 
00026 #include "EvtGenBase/EvtDecayAmp.hh"
00027 #include "EvtGenBase/EvtSpinType.hh"
00028 #include "EvtGenBase/EvtId.hh"
00029 
00030 class EvtParticle;
00031 class EvtAmp;
00032 
00033 class EvtEvalHelAmp{
00034 
00035 public:
00036 
00037   EvtEvalHelAmp(EvtSpinType::spintype A,
00038                 EvtSpinType::spintype B,
00039                 EvtSpinType::spintype C,
00040                 EvtComplexPtrPtr HBC);
00041 
00042   virtual ~EvtEvalHelAmp();
00043 
00044   double probMax();
00045 
00046   void evalAmp(EvtParticle *p, EvtAmp& amp); 
00047 
00048 
00049 private:
00050 
00051   void fillHelicity(int* lambda2,int n,int J2);
00052   void setUpRotationMatrices(EvtParticle *p,double theta, double phi);
00053   void applyRotationMatrices();
00054 
00055   //spins states available for particle A, B, and C.
00056   int _nA,_nB,_nC;
00057 
00058   //helicity amplitudes
00059   EvtComplexPtrPtr _HBC;
00060 
00061   //2 times spin for each of the particles
00062   int _JA2,_JB2,_JC2;
00063 
00064   //2 times the helicity for the states
00065   int *_lambdaA2,*_lambdaB2,*_lambdaC2;
00066 
00067   //Rotation matrices
00068   EvtComplexPtrPtr _RA,_RB,_RC;
00069 
00070   //temporary array for amplitudes
00071   EvtComplexPtrPtrPtr _amp,_amp1,_amp3;
00072 
00073 };
00074 
00075 #endif
00076 
00077 
00078 
00079 
00080 
00081 

Generated on Tue Nov 29 23:12:13 2016 for BOSS_7.0.2 by  doxygen 1.4.7