Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // 27 /// \file optical/wls/src/WLSUserTrackInformat 27 /// \file optical/wls/src/WLSUserTrackInformation.cc 28 /// \brief Implementation of the WLSUserTrackI 28 /// \brief Implementation of the WLSUserTrackInformation class 29 // 29 // 30 // 30 // 31 31 32 #include "WLSUserTrackInformation.hh" 32 #include "WLSUserTrackInformation.hh" 33 33 34 //....oooOO0OOooo........oooOO0OOooo........oo 34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 35 35 >> 36 WLSUserTrackInformation::WLSUserTrackInformation() { fStatus = undefined; } >> 37 >> 38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 39 >> 40 WLSUserTrackInformation::~WLSUserTrackInformation() {} >> 41 >> 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 43 36 G4bool WLSUserTrackInformation::AddStatusFlag( 44 G4bool WLSUserTrackInformation::AddStatusFlag(TrackStatus s) 37 // Try adding a status flag and return if it i 45 // Try adding a status flag and return if it is successful or not 38 // Cannot Add Undefine or a flag that conflict 46 // Cannot Add Undefine or a flag that conflicts with another flag 39 // Return true if the addition of flag is succ 47 // Return true if the addition of flag is successful, false otherwise 40 { 48 { 41 switch (s) { << 49 switch(s) >> 50 { 42 case left: 51 case left: 43 case right: 52 case right: 44 53 45 // Allow the user to set left or right 54 // Allow the user to set left or right 46 // only if the track is undefined 55 // only if the track is undefined 47 if (fStatus == undefined) return fStatus << 56 if(fStatus == undefined) >> 57 return fStatus |= s; 48 58 49 return false; 59 return false; 50 60 51 case EscapedFromSide: 61 case EscapedFromSide: 52 case EscapedFromReadOut: 62 case EscapedFromReadOut: 53 63 54 // Allow the user to set escaped flag 64 // Allow the user to set escaped flag 55 // only if the photon hasn't exited the 65 // only if the photon hasn't exited the fiber yet 56 66 57 if ((fStatus == undefined) || (fStatus & << 67 if((fStatus == undefined) || (fStatus & OutsideOfFiber)) >> 68 return false; 58 69 59 return fStatus |= s; 70 return fStatus |= s; 60 71 61 case ReflectedAtMirror: 72 case ReflectedAtMirror: 62 case ReflectedAtReadOut: 73 case ReflectedAtReadOut: 63 case murderee: 74 case murderee: 64 75 65 return fStatus |= s; 76 return fStatus |= s; 66 77 67 case InsideOfFiber: 78 case InsideOfFiber: 68 79 69 return (fStatus = (fStatus & ~(EscapedFr << 80 return (fStatus = (fStatus & ~(EscapedFromSide + EscapedFromReadOut + >> 81 OutsideOfFiber)) | >> 82 s); 70 83 71 case OutsideOfFiber: 84 case OutsideOfFiber: 72 85 73 return (fStatus = (fStatus & ~InsideOfFi 86 return (fStatus = (fStatus & ~InsideOfFiber) | s); 74 87 75 default: 88 default: 76 89 77 return false; 90 return false; 78 } 91 } 79 } 92 } 80 93