Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:58:14

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //
0027 //
0028 // --------------------------------------------------------------------
0029 // GEANT4 class header file
0030 //
0031 // Class Description:
0032 // A clipboard for communicating between quantum entangled photons
0033 // from e+ annihilation. Applies only to the two-gamma decay from the
0034 // JP=0- state of e+e-, para-positronium. (This is the dominant process
0035 // in materials such as human tissue, since the ortho-positronium JP=1-
0036 // state, initially more likely, is "picked off" by a near-by electron
0037 // and turned into para-positronium, because it has the much shorter
0038 // meanlife.)
0039 // Also applies to pi zero (JP=0-).
0040 //
0041 // ------------------ G4eplusAnnihilationEntanglementClipBoard ------------------
0042 //
0043 // Author: J.Allison, May 2017
0044 //
0045 // --------------------------------------------------------------------
0046 
0047 // This is a concrete class based on G4VEntanglementClipBoard.  Information
0048 // specific to this type of entanglement can be posted here.  See
0049 // G4VEntanglementClipBoard.hh for more detail on how to use this class.
0050 
0051 #ifndef G4eplusAnnihilationEntanglementClipBoard_hh
0052 #define G4eplusAnnihilationEntanglementClipBoard_hh
0053 
0054 #include "G4VEntanglementClipBoard.hh"
0055 
0056 class G4eplusAnnihilationEntanglementClipBoard
0057 : public G4VEntanglementClipBoard
0058 {
0059 public:
0060   G4eplusAnnihilationEntanglementClipBoard()
0061   : fComptonCosTheta1(0.)
0062   , fComptonPhi1(0.)
0063   {}
0064   ~G4eplusAnnihilationEntanglementClipBoard() {}
0065 
0066   // Cos(theta) and phi of the first Compton scattering of the first photon
0067   void SetComptonCosTheta1(G4double cosTheta1) {fComptonCosTheta1 = cosTheta1;}
0068   void SetComptonPhi1(G4double phi1) {fComptonPhi1 = phi1;}
0069   G4double GetComptonCosTheta1() const {return fComptonCosTheta1;}
0070   G4double GetComptonPhi1() const {return fComptonPhi1;}
0071 
0072 protected:
0073   // Cos(theta) and phi of the first Compton scattering of the first photon
0074   G4double fComptonCosTheta1, fComptonPhi1;
0075 };
0076 
0077 #endif