00001 //---------------------------------------------------------------------------// 00002 //bb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nu// 00003 // // 00004 // MAJORANA Simulation // 00005 // // 00006 // This code implementation is the intellectual property of the // 00007 // MAJORANA Collaboration. It is based on Geant4, an intellectual // 00008 // property of the RD44 GEANT4 collaboration. // 00009 // // 00010 // ********************* // 00011 // // 00012 // Neither the authors of this software system, nor their employing // 00013 // institutes, nor the agencies providing financial support for this // 00014 // work make any representation or warranty, express or implied, // 00015 // regarding this software system or assume any liability for its use. // 00016 // By copying, distributing or modifying the Program (or any work based // 00017 // on on the Program) you indicate your acceptance of this statement, // 00018 // and all its terms. // 00019 // // 00020 //bb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nubb0nu// 00021 //---------------------------------------------------------------------------// 00032 // Begin description of class here 00037 // End class description 00038 // 00043 // 00044 // --------------------------------------------------------------------------// 00059 // --------------------------------------------------------------------------// 00060 00061 #ifndef _MJGEOMETRYGLOBALS_HH 00062 #define _MJGEOMETRYGLOBALS_HH 00063 00064 //---------------------------------------------------------------------------// 00065 00066 // GEANT4 headers 00067 #include "globals.hh" 00068 #include "G4VisAttributes.hh" 00069 #include "G4Color.hh" 00070 //---------------------------------------------------------------------------// 00071 00072 // Build the colors to be used in the visual attributes 00073 static G4Color white(1.0, 1.0, 1.0); // white 00074 static G4Color ltgray(0.25, 0.25, 0.25); // light gray 00075 static G4Color mdgray(0.5, 0.5, 0.5); // gray 00076 static G4Color dkgray(0.75, 0.75, 0.75); // dark gray 00077 static G4Color black(0.0, 0.0, 0.0); // black 00078 static G4Color red(1.0, 0.0, 0.0); // red 00079 static G4Color green(0.0, 1.0, 0.0); // green 00080 static G4Color blue(0.0, 0.0, 1.0); // blue 00081 static G4Color cyan(0.0, 1.0, 1.0); // cyan 00082 static G4Color magenta(1.0, 0.0, 1.0); // magenta 00083 static G4Color yellow(1.0, 1.0, 0.0); // yellow 00084 00085 #endif