00001 /* BDSIM code. Version 1.0 00002 Author: Grahame A. Blair, Royal Holloway, Univ. of London. 00003 Last modified 24.7.2002 00004 Copyright (c) 2002 by G.A.Blair. ALL RIGHTS RESERVED. 00005 */ 00006 // G.A.Blair (RHUL) 10.12.01 00007 // adapted from code supplied by D.Schulte (CERN) 00008 00009 #ifndef BDSRMatrix_h 00010 #define BDSRMatrix_h 1 00011 00012 #include "globals.hh" 00013 00014 class BDSRMatrix 00015 { 00016 public: 00017 BDSRMatrix(); 00018 G4double r11,r12,r21,r22; 00019 }; 00020 00021 #endif