Problem 1102 - QtOpenGL visualization problem
Summary: QtOpenGL visualization problem
Status: RESOLVED FIXED
Alias: None
Product: Geant4
Classification: Unclassified
Component: visualization (show other problems)
Version: 9.3
Hardware: Other Linux
: P3 normal
Assignee: garnier
URL:
: 1099 (view as problem list)
Depends on:
Blocks:
 
Reported: 2010-01-29 15:30 CET by jean-etienne
Modified: 2011-02-23 18:03 CET (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
Description jean-etienne 2010-01-29 15:30:13 CET
trying to execute TestEm5 (for example) with Qt visualization, i encounter
a problem.
After running TestEm5 i execute the several commands as follow:


 
> PreInit> /run/initialize
> 
> Material: Galactic     density:  0.000 kg/m3   RadL: 204727512.315 pc   Nucl.Int.Length: 113804112.800 pc   Imean:  21.800atm
>  --->  Element: Galactic ( )   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction: 100.00 %  ElmAbundance 100.00 %
> 
> Material:  Silicon     density:  2.330 g/cm3   RadL:   9.368 cm   Nucl.Int.Length:  45.663 cm   Imean: 173.600 eV
>  --->  Element: Silicon ( )   Z = 14.0   N =  28.1   A =  28.09 g/mole  ElmMassFraction: 100.00 %  ElmAbundance 100.00 %
> 
> * The  WORLD   is made of 1.5 cm  of Galactic. The transverse size (YZ) of the world is 2.4 cm*
> * The ABSORBER is made of 1 cm  of Silicon. The transverse size (YZ) is 2 cm*
> X position of the middle of the absorber 0 fm
> PhysicsList::SetCuts:CutLength : 1 mm

> Idle> /vis/scene/create

> Idle> /vis/open OGLIQt

> *QLayout: Adding QGLWidget/unnamed (top-level widget) to layout for QDialog/unnamed*
> Your "world" has no vis attributes or is marked as visible.
> For a better view of the contents, mark the world as invisible, e.g.,
> myWorldLogicalVol -> SetVisAttributes (G4VisAttributes::Invisible);
> G4Scene::AddWorldIfEmpty: The scene was empty of run-duration models.
> "world" has been added.
> *Try to resize view greater than max Y viewport dimension. Desired size 382422576 is resize to 0

The Y dimension seems to be a random number and the window is empty disabeling
the visualization of the geometry depicted above after the /run/initialize.

Thanks in advance for any explanation
Comment 1 garnier 2010-01-29 16:44:57 CET
> > Idle> /vis/open OGLIQt
> 
> > *QLayout: Adding QGLWidget/unnamed (top-level widget) to layout for QDialog/unnamed*
> ...

I have identify this problem and this should be solved in the next patch. The fact is that first time we open a visualization, OpenGL is not initialized. In order to do that we should add "  fMainWindow->setVisible(true);"
at the end of G4UIQt::G4UIQt() 

Laurent
Comment 2 garnier 2010-02-08 15:56:48 CET
There is some OpenGL initialization problems in Geant4.9.3 on apple snow leopard, but it could affect all geant4.9.3 platforms.

The possibles effects are : 
- Warning message and a wrong resize at init on OGLxxx Viewers.
- Crash when opening an OpenGL dialog
- Other effect at init of OpenGL viewers


The patch (will be released in next geant4 patch) is the following (only for 4.9.3 !) :

- Open src/interfaces/basic/src/G4UIQt.cc
Find lines :
277 :
278 :   if(UI!=NULL) UI->SetCoutDestination(this);  // TO KEEP
279 : }
280 :
281 :
282 :
283 : G4UIQt::~G4UIQt(


You have to add a line between line 278 and 279 : 

 fMainWindow->setVisible(true);

The problem seems to be a too late initialization of OpenGL. This should fix it.


In order to remake only what you need :
- If you have made geant4 from "Configure", you should re-run "Configure", it will only recompile
new files.
- If you have made geant4 from "makefiles", you should go in geant4_9_3/source/interfaces and run
"make"

Laurent
Comment 3 garnier 2010-02-08 15:57:58 CET
*** Problem 1099 has been marked as a duplicate of this problem. ***
Comment 4 kayan 2010-06-14 16:42:23 CEST
(In reply to comment #3)
> *** Problem 1099 has been marked as a duplicate of this problem. ***

Hello everybody,

I have the same problem (Snow Leo crashing at OGLIQt). Unfortunately adding the line 
   fMainWindow->setVisible(true);
into 
   source/interfaces/basic/src/G4UIQt.cc
and recompiling the libs did not resolve my problem. I still have a "segmentation fault" when executing the examples. With OpenGl everything works fine. Has anyone an idea? 

I'm on 10.6.3 64bit (also tried 32bit) and geant4 9.4.3

Thanks a lot

Hakan
Comment 5 garnier 2010-06-14 18:04:35 CEST
(In reply to comment #4)
> (In reply to comment #3)
> > *** Problem 1099 has been marked as a duplicate of this problem. ***
> 
> Hello everybody,
> 
> I have the same problem (Snow Leo crashing at OGLIQt). Unfortunately adding the
> line 
>    fMainWindow->setVisible(true);
> into 
>    source/interfaces/basic/src/G4UIQt.cc
> and recompiling the libs did not resolve my problem. I still have a
> "segmentation fault" when executing the examples. With OpenGl everything works
> fine. Has anyone an idea? 
> 
> I'm on 10.6.3 64bit (also tried 32bit) and geant4 9.4.3
> 
> Thanks a lot
> 
> Hakan

Hi, 

Where is exactly your problem, if you run your programm with "gdb my_prog", then "run", then "where" when the programm crash. 
What does it says ?

New version of Geant4 is coming in a few weeks..
Cheers,
Comment 6 kayan 2010-06-15 10:36:51 CEST
Hi, 

first of all thanks for the quick reply. 

Also what have I done: 

1. I downloaded geant4 9.4.3 and made "./Configure -build" in the geant4 directory.  I also installed the    newest Qt-Libraries. 

2. When I was asked in the configure prompt for "Enanble building of the Qt UI modules", I said yes. I also said yes to "Enable building of the Qt OpenGL visualiszation driver".

3. The Installation run through and in my environment variables it is said: "On this machine the G4VIS_USE_OPENGLQT=1"

4. When I type "make" in the N03 dir everything runs through. Then I changed in the vis.mac file "/vis/open OGLIX" into "/vis/open OGLSQt"

5. When starting ./exampleN03 the app runs till:

Current available graphics systems are:
  ASCIITree (ATree)
  DAWNFILE (DAWNFILE)
  G4HepRep (HepRepXML)
  G4HepRepFile (HepRepFile)
  RayTracer (RayTracer)
  VRML1FILE (VRML1FILE)
  VRML2FILE (VRML2FILE)
  gMocrenFile (gMocrenFile)
  OpenGLImmediateX (OGLIX)
  OpenGLStoredX (OGLSX)
  OpenGLImmediateQt (OGLIQt)
  OpenGLStoredQt (OGLSQt)
  RayTracerX (RayTracerX)

Registering model factories...

You have successfully registered the following model factories.
Registered model factories:
  generic
  drawByCharge
  drawByParticleID
  drawByOriginVolume
  drawByAttribute

Registered filter factories:
  chargeFilter
  particleFilter
  originVolumeFilter
  attributeFilter

/control/saveHistory
/run/verbose 2
#
# create empty scene
#
/vis/scene/create
#
# Create a scene handler for a specific graphics system
# (Edit the next line(s) to choose another graphic system)
#
# Use this open statement to get an .eps and .prim files
# suitable for viewing in DAWN.
###/vis/open DAWNFILE
#
# Use this open statement instead for OpenGL in immediate mode.
#/vis/open OGLIX
/vis/open OGLSQt
/vis/sceneHandler/create OGLSQt
/vis/sceneHandler/attach
/vis/viewer/create ! ! 600
Segmentation fault  

So you can see OpenGLImmediateQt is available. 

The crash report is here: 

Process:         exampleN03 [1526]
Path:            /Users/kayan/Documents/Diplomarbeit/g4work/N03/./exampleN03
Identifier:      exampleN03
Version:         ??? (???)
Code Type:       X86-64 (Native)
Parent Process:  bash [356]

Date/Time:       2010-06-15 10:31:16.386 +0200
OS Version:      Mac OS X 10.6.3 (10D2094)
Report Version:  6

Interval Since Last Report:          594670 sec
Crashes Since Last Report:           63
Per-App Crashes Since Last Report:   33
Anonymous UUID:                      4F736537-D061-43E4-A096-6FB9EDF3A495

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   ???                           	000000000000000000 0 + 0
1   libG4OpenGL.dylib             	0x0000000100180f28 G4OpenGLStoredQtViewer::initializeGL() + 24
2   QtOpenGL                      	0x000000010321add4 QGLWidget::glInit() + 68
3   QtOpenGL                      	0x00000001032170cc QGLWidget::resizeEvent(QResizeEvent*) + 156
4   QtGui                         	0x00000001026c8188 QWidget::event(QEvent*) + 2344
5   QtOpenGL                      	0x000000010321d062 QGLWidget::event(QEvent*) + 82
6   QtGui                         	0x000000010266e8cd QApplicationPrivate::notify_helper(QObject*, QEvent*) + 189
7   QtGui                         	0x000000010267345d QApplication::notify(QObject*, QEvent*) + 349
8   QtCore                        	0x000000010235086c QCoreApplication::notifyInternal(QObject*, QEvent*) + 124
9   QtGui                         	0x00000001026c0a17 QWidgetPrivate::sendPendingMoveAndResizeEvents(bool, bool) + 487
10  QtGui                         	0x00000001026c6718 QWidgetPrivate::show_helper() + 40
11  QtGui                         	0x00000001026c6bbf QWidget::setVisible(bool) + 511
12  QtGui                         	0x00000001026c66a1 QWidgetPrivate::showChildren(bool) + 289
13  QtGui                         	0x00000001026c6734 QWidgetPrivate::show_helper() + 68
14  QtGui                         	0x00000001026c6bbf QWidget::setVisible(bool) + 511
15  QtGui                         	0x0000000102acf7b7 QDialog::setVisible(bool) + 103
16  libG4OpenGL.dylib             	0x00000001001740e7 G4OpenGLQtViewer::CreateMainWindow(QGLWidget*, QString) + 487
17  libG4OpenGL.dylib             	0x00000001001817e1 G4OpenGLStoredQtViewer::Initialise() + 65
18  libG4vis_management.dylib     	0x00000001002329c5 G4VisManager::CreateViewer(G4String, G4String) + 149
19  libG4vis_management.dylib     	0x0000000100221197 G4VisCommandViewerCreate::SetNewValue(G4UIcommand*, G4String) + 1863
20  libG4intercoms.dylib          	0x0000000102294b14 G4UIcommand::DoIt(G4String) + 2260
21  libG4intercoms.dylib          	0x000000010229f239 G4UImanager::ApplyCommand(char const*) + 1017
22  libG4vis_management.dylib     	0x00000001001fc101 G4VisCommandOpen::SetNewValue(G4UIcommand*, G4String) + 273
23  libG4intercoms.dylib          	0x0000000102294b14 G4UIcommand::DoIt(G4String) + 2260
24  libG4intercoms.dylib          	0x000000010229f239 G4UImanager::ApplyCommand(char const*) + 1017
25  libG4intercoms.dylib          	0x0000000102285b4d G4UIbatch::ExecCommand(G4String const&) + 61
26  libG4intercoms.dylib          	0x000000010228704f G4UIbatch::SessionStart() + 143
27  libG4intercoms.dylib          	0x000000010229e594 G4UImanager::ExecuteMacroFile(char const*) + 68
28  libG4intercoms.dylib          	0x000000010229c33c G4UIcontrolMessenger::SetNewValue(G4UIcommand*, G4String) + 268
29  libG4intercoms.dylib          	0x0000000102294b14 G4UIcommand::DoIt(G4String) + 2260
30  libG4intercoms.dylib          	0x000000010229f239 G4UImanager::ApplyCommand(char const*) + 1017
31  exampleN03                    	0x00000001000029b0 main + 656
32  exampleN03                    	0x00000001000025c8 start + 52

Thread 1:  Dispatch queue: com.apple.libdispatch-manager
0   libSystem.B.dylib             	0x00007fff83fe34ea kevent + 10
1   libSystem.B.dylib             	0x00007fff83fe53bd _dispatch_mgr_invoke + 154
2   libSystem.B.dylib             	0x00007fff83fe5094 _dispatch_queue_invoke + 185
3   libSystem.B.dylib             	0x00007fff83fe4bbe _dispatch_worker_thread2 + 252
4   libSystem.B.dylib             	0x00007fff83fe44e8 _pthread_wqthread + 353
5   libSystem.B.dylib             	0x00007fff83fe4385 start_wqthread + 13

Thread 2:
0   libSystem.B.dylib             	0x00007fff83fe430a __workq_kernreturn + 10
1   libSystem.B.dylib             	0x00007fff83fe471c _pthread_wqthread + 917
2   libSystem.B.dylib             	0x00007fff83fe4385 start_wqthread + 13

Thread 3:
0   libSystem.B.dylib             	0x00007fff8400e286 select$DARWIN_EXTSN + 10
1   QtCore                        	0x0000000102409510 QProcessManager::run() + 96
2   QtCore                        	0x00000001023720b5 QThreadPrivate::start(void*) + 165
3   libSystem.B.dylib             	0x00007fff840038b6 _pthread_start + 331
4   libSystem.B.dylib             	0x00007fff84003769 thread_start + 13

Thread 4:
0   libSystem.B.dylib             	0x00007fff8400e286 select$DARWIN_EXTSN + 10
1   com.apple.CoreFoundation      	0x00007fff8897aef2 __CFSocketManager + 818
2   libSystem.B.dylib             	0x00007fff840038b6 _pthread_start + 331
3   libSystem.B.dylib             	0x00007fff84003769 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00000001033a3a60  rbx: 0x000000010400a088  rcx: 0x0000000103caa430  rdx: 0x0000000000000000
  rdi: 0x000000010400a088  rsi: 0x0000000103caa430  rbp: 0x00007fff5fbfccc0  rsp: 0x00007fff5fbfcca8
   r8: 0x000000010256d578   r9: 0x00000000103cdf6f  r10: 0x00000001033a701f  r11: 0x0000000000000000
  r12: 0x0000000103cc5790  r13: 0x00007fff5fbfd450  r14: 0x0000000103ca7ff0  r15: 0x00007fff5fbfd450
  rip: 0x0000000000000000  rfl: 0x0000000000010202  cr2: 0x0000000000000000

Binary Images:
       0x100000000 -        0x100003ff7 +exampleN03 ??? (???) <8B5B6DEA-8F73-A33F-0913-103E02B8FBEE> /Users/kayan/Documents/Diplomarbeit/g4work/N03/exampleN03
       0x100009000 -        0x100019ff7 +libexampleN03.dylib ??? (???) <B44C503F-7700-80F8-0B73-48E86968A01A> /Users/kayan/Documents/Diplomarbeit/g4work/tmp/Darwin-g++/exampleN03/libexampleN03.dylib
       0x100024000 -        0x10002ffff +libG4Tree.dylib ??? (???) <3DCF52B9-9B82-FE99-CC9C-093124F3DF0A> /Applications/geant4.9.3/lib/Darwin-g++/libG4Tree.dylib
       0x100038000 -        0x100042ff7 +libG4FR.dylib ??? (???) <9A6CE5B3-D6F8-33BD-2786-07D6E8E8EDE5> /Applications/geant4.9.3/lib/Darwin-g++/libG4FR.dylib
       0x10004a000 -        0x100077fff +libG4GMocren.dylib ??? (???) <A1A8D233-4535-EB2E-2972-94D61ADFA658> /Applications/geant4.9.3/lib/Darwin-g++/libG4GMocren.dylib
       0x100091000 -        0x1000fbff7 +libG4visHepRep.dylib ??? (???) <72BAD77D-D05D-EE76-C72D-DAB81E0D6C03> /Applications/geant4.9.3/lib/Darwin-g++/libG4visHepRep.dylib
       0x10012b000 -        0x10013dfef +libG4RayTracer.dylib ??? (???) <A1924B4D-E937-B846-CA05-70E4D239DFED> /Applications/geant4.9.3/lib/Darwin-g++/libG4RayTracer.dylib
       0x10014e000 -        0x10015bfff +libG4VRML.dylib ??? (???) <E7CB0368-0B38-0A1E-26A5-267D196059C9> /Applications/geant4.9.3/lib/Darwin-g++/libG4VRML.dylib
       0x100165000 -        0x1001a8ff7 +libG4OpenGL.dylib ??? (???) <B24E89C1-CE6F-AFD2-A6C5-7839FE661D2C> /Applications/geant4.9.3/lib/Darwin-g++/libG4OpenGL.dylib
       0x1001d1000 -        0x1001e2fff +libG4gl2ps.dylib ??? (???) <09E430FD-8012-D8D9-CA00-9896281C2B9F> /Applications/geant4.9.3/lib/Darwin-g++/libG4gl2ps.dylib
       0x1001e7000 -        0x100268fff +libG4vis_management.dylib ??? (???) <89C0EE43-4129-302B-DFA8-66AEFCDD5781> /Applications/geant4.9.3/lib/Darwin-g++/libG4vis_management.dylib
       0x10029d000 -        0x10031cfff +libG4modeling.dylib ??? (???) <02083F40-3603-FF10-7671-B77C3F356DB5> /Applications/geant4.9.3/lib/Darwin-g++/libG4modeling.dylib
       0x100375000 -        0x1003b0fef +libG4interfaces.dylib ??? (???) <00A02DBD-1C5F-DC60-517F-2AC657DD7C7A> /Applications/geant4.9.3/lib/Darwin-g++/libG4interfaces.dylib
       0x1003c3000 -        0x100450ff7 +libG4persistency.dylib ??? (???) <D5365E49-9B6F-AA22-EF33-E13F6D4DA9E7> /Applications/geant4.9.3/lib/Darwin-g++/libG4persistency.dylib
       0x100487000 -        0x1004b2ff7 +libG4error_propagation.dylib ??? (???) <2D40F03F-1996-00D0-99AE-4CDF936B72A6> /Applications/geant4.9.3/lib/Darwin-g++/libG4error_propagation.dylib
       0x1004c6000 -        0x1004cbff7 +libG4readout.dylib ??? (???) <A9B9597B-C7ED-87C4-B4F6-326DD9848F28> /Applications/geant4.9.3/lib/Darwin-g++/libG4readout.dylib
       0x1004d0000 -        0x100589fff +libG4physicslists.dylib ??? (???) <3A7DCEC7-BE91-20CC-3935-696C7591E8ED> /Applications/geant4.9.3/lib/Darwin-g++/libG4physicslists.dylib
       0x1005ee000 -        0x10061cff7 +libG4run.dylib ??? (???) <992EF20A-0DD0-2FED-2A30-19D2510A1EF6> /Applications/geant4.9.3/lib/Darwin-g++/libG4run.dylib
       0x100630000 -        0x100674ff7 +libG4event.dylib ??? (???) <260B53D5-1947-5986-6ED5-5C426A118A92> /Applications/geant4.9.3/lib/Darwin-g++/libG4event.dylib
       0x10068e000 -        0x1006bffff +libG4tracking.dylib ??? (???) <7D8ACA81-41DE-9AA6-68A6-EE1C660332E9> /Applications/geant4.9.3/lib/Darwin-g++/libG4tracking.dylib
       0x1006d1000 -        0x1006ddfff +libG4parmodels.dylib ??? (???) <FC223581-6233-A158-3927-7CCF0D376B38> /Applications/geant4.9.3/lib/Darwin-g++/libG4parmodels.dylib
       0x1006e8000 -        0x1013bbfe7 +libG4processes.dylib ??? (???) <F27A6FC7-B52F-209B-F11F-154CE83A91EA> /Applications/geant4.9.3/lib/Darwin-g++/libG4processes.dylib
       0x101cf0000 -        0x101d5dfe7 +libG4digits_hits.dylib ??? (???) <7316982D-600D-8DBA-C459-30A2D2540C87> /Applications/geant4.9.3/lib/Darwin-g++/libG4digits_hits.dylib
       0x101d8b000 -        0x101d99fff +libG4track.dylib ??? (???) <6A6A4D2B-21B1-3419-F618-3CF94B051B22> /Applications/geant4.9.3/lib/Darwin-g++/libG4track.dylib
       0x101da2000 -        0x101e4ffff +libG4particles.dylib ??? (???) <3451E5A0-A808-743D-BC02-BD7F5C3DDFEB> /Applications/geant4.9.3/lib/Darwin-g++/libG4particles.dylib
       0x101eb5000 -        0x10207dfe7 +libG4geometry.dylib ??? (???) <119490A2-C437-73D1-64EE-A8D4AD311AF4> /Applications/geant4.9.3/lib/Darwin-g++/libG4geometry.dylib
       0x102134000 -        0x102207fff +libG4materials.dylib ??? (???) <E2C73463-2E5D-2508-E48E-5A4C0579C974> /Applications/geant4.9.3/lib/Darwin-g++/libG4materials.dylib
       0x102234000 -        0x102268fe7 +libG4graphics_reps.dylib ??? (???) <5794C1D7-1C7D-EA1E-4AAF-E667F96EFC05> /Applications/geant4.9.3/lib/Darwin-g++/libG4graphics_reps.dylib
       0x102283000 -        0x1022b6fff +libG4intercoms.dylib ??? (???) <E6F1DB6D-1850-8568-490E-EC9224C8484C> /Applications/geant4.9.3/lib/Darwin-g++/libG4intercoms.dylib
       0x1022c6000 -        0x1022effe7 +libG4global.dylib ??? (???) <F7989EEC-6907-C41A-00AA-6515D49FBCD5> /Applications/geant4.9.3/lib/Darwin-g++/libG4global.dylib
       0x102301000 -        0x102562fef +QtCore 4.6.3 (compatibility 4.6.0) <7B671F9D-F11F-6298-1FC4-57F9098B29F4> /Library/Frameworks/QtCore.framework/Versions/4/QtCore
       0x1025f4000 -        0x102f7ffe7 +QtGui 4.6.3 (compatibility 4.6.0) <7DCA3A94-1A0C-A5EE-213E-4ABBEC8ED09F> /Library/Frameworks/QtGui.framework/Versions/4/QtGui
       0x103211000 -        0x1032bfff7 +QtOpenGL 4.6.3 (compatibility 4.6.0) <1035ACA5-6FD6-1606-BF88-9D8E258897AB> /Library/Frameworks/QtOpenGL.framework/Versions/4/QtOpenGL
       0x1032fe000 -        0x103362fef +libGLU.1.dylib 1.3.0 (compatibility 1.3.0) <0B1813BE-4C49-B1FC-24D0-73D8917F1071> /usr/X11/lib/libGLU.1.dylib
       0x103377000 -        0x1033a1fff +libGL.1.dylib 1.2.0 (compatibility 1.2.0) <455D1610-3248-8F41-764E-BA38A9C7F341> /usr/X11/lib/libGL.1.dylib
       0x1033ba000 -        0x103404ff7 +libXaw.7.dylib 8.0.0 (compatibility 8.0.0) <6304FA9A-961D-7277-1FCE-646005BE8601> /usr/X11/lib/libXaw.7.dylib
       0x103423000 -        0x103434fe7 +libXmu.6.dylib 9.0.0 (compatibility 9.0.0) <7525D7D6-B393-0D7C-2032-1F3F3BD347CC> /usr/X11/lib/libXmu.6.dylib
       0x10343e000 -        0x103484fff +libXt.6.dylib 7.0.0 (compatibility 7.0.0) <D4771117-5CA8-4294-AACD-E95ED28FA640> /usr/X11/lib/libXt.6.dylib
       0x10349e000 -        0x1034aaff7 +libXext.6.dylib 11.0.0 (compatibility 11.0.0) <363DD783-ED56-7851-0192-B33EF8575CF3> /usr/X11/lib/libXext.6.dylib
       0x1034b1000 -        0x1035c2ff7 +libX11.6.dylib 9.0.0 (compatibility 9.0.0) <2A85F9C5-BE46-8511-E8D0-1D6D7BBEB221> /usr/X11/lib/libX11.6.dylib
       0x1035e8000 -        0x1035efff7 +libXi.6.dylib 7.0.0 (compatibility 7.0.0) <86300EEC-3A86-FF2B-684E-F76E20278539> /usr/X11/lib/libXi.6.dylib
       0x1035f4000 -        0x1035f9ff7 +libSM.6.dylib 7.0.0 (compatibility 7.0.0) <BAE05DC2-CCB9-4952-52FF-AFAAB705F76F> /usr/X11/lib/libSM.6.dylib
       0x1035fe000 -        0x10360eff7 +libICE.6.dylib 10.0.0 (compatibility 10.0.0) <554BD0F3-56C8-1DE7-D3C9-A124072BEB02> /usr/X11/lib/libICE.6.dylib
       0x10361a000 -        0x10371efe7 +libCLHEP-2.0.4.6.dylib ??? (???) <380A3E09-DF25-0236-EB65-5BD5BFF6CED0> /Applications/CLHEP/lib/libCLHEP-2.0.4.6.dylib
       0x1037f1000 -        0x1037f7ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <665C84F5-7DDF-9329-BFC4-B00B5A7496D6> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
       0x1037fe000 -        0x10380bfe7  libXplugin.1.dylib ??? (???) <1C58E921-DD2D-118C-54DE-B998618B27CF> /usr/lib/libXplugin.1.dylib
       0x103815000 -        0x103818fef +libXdmcp.6.dylib 7.0.0 (compatibility 7.0.0) <CB4391D8-7E90-742A-71DB-408D9CD64093> /usr/X11/lib/libXdmcp.6.dylib
       0x10381d000 -        0x10381eff7 +libXau.6.dylib 7.0.0 (compatibility 7.0.0) <18F30F03-AEEC-FF45-38D7-C0FE65F85C29> /usr/X11/lib/libXau.6.dylib
       0x103822000 -        0x10382efe7 +libXpm.4.dylib 16.0.0 (compatibility 16.0.0) <0AD55659-6FEC-8B2F-98F1-AAC4C06282AF> /usr/X11/lib/libXpm.4.dylib
       0x116683000 -        0x1166a9fe7  GLRendererFloat ??? (???) <352FC221-C3DB-283A-4A47-8D2EA8D8F0E8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x116de8000 -        0x116f75fe7  GLEngine ??? (???) <A55922C2-4862-3372-C5BE-6BDBEC6C90EE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x117d2d000 -        0x11814fff7  libclh.dylib 3.1.1 C  (3.1.1) <F690A548-E3DC-557C-9AA1-F79746DFDEF4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
       0x11817d000 -        0x119034fe7  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.10 (6.1.0) <156C3F94-E97B-AD5B-E1E6-00DBB9159644> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHDGraphicsGLDriver
       0x200000000 -        0x2006c3fe7  com.apple.GeForceGLDriver 1.6.10 (6.1.0) <0861797E-81CE-34E3-B1A4-A4FE5181EEE0> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <9B995E17-37AC-B849-C124-E97BE32B778A> /usr/lib/dyld
    0x7fff8004e000 -     0x7fff80053fff  libGFXShared.dylib ??? (???) <B2682015-C7B4-AF4D-48FD-D3AC175062C0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff800c9000 -     0x7fff800deff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <0EE4B175-27DF-A2F7-366C-A9CC2814A93D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff80352000 -     0x7fff80370fff  libPng.dylib ??? (???) <B7CA0853-6A58-7D98-8288-789C2D3EBACC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8037d000 -     0x7fff8039efff  libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <E34F3FC9-8CB3-2AB5-877E-D3D36273AF60> /usr/lib/libresolv.9.dylib
    0x7fff8048e000 -     0x7fff804a4ff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <FB283E51-94DC-D1C0-0EFC-7B773966EDAF> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff804a5000 -     0x7fff804efff7  com.apple.Metadata 10.6.3 (507.8) <2193434D-C43B-C1D8-6326-48B25C0CCA11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff80651000 -     0x7fff8070eff7  com.apple.CoreServices.OSServices 357 (357) <0DD3B712-16C1-09EF-5894-D403A33BDB73> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8070f000 -     0x7fff8072aff7  com.apple.openscripting 1.3.1 (???) <5A6ECC32-04D0-9A62-635D-1DD03EC6E190> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff80876000 -     0x7fff80883fe7  libCSync.A.dylib 543.34.0 (compatibility 64.0.0) <C389970F-FCD6-76A2-87D9-A8CFC1DD3EDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff80884000 -     0x7fff81279fe7  com.apple.AppKit 6.6.5 (1038.29) <8938E4FE-E661-ABC6-097F-00E258F8345B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff81784000 -     0x7fff817acfff  com.apple.DictionaryServices 1.1.1 (1.1.1) <403E9BF2-EC47-1D32-E4B1-3D624AAA5BBD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff817ad000 -     0x7fff817b2fff  libGIF.dylib ??? (???) <FBCF8D99-52D0-E743-C01A-528CDE05C399> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff817b3000 -     0x7fff817b6ff7  libCoreVMClient.dylib ??? (???) <F00F6772-08DB-03EE-1E12-9CF60CE69D8C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff8181a000 -     0x7fff8181fff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff81820000 -     0x7fff81b1efef  com.apple.HIToolbox 1.6.2 (???) <3A6CD66E-A65D-9DC2-0FEF-32D31CBEF3DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff81b1f000 -     0x7fff81c17ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <E0683DF0-8180-58A2-BA49-511111D4F36E> /usr/lib/libiconv.2.dylib
    0x7fff81c42000 -     0x7fff81cc7fff  com.apple.print.framework.PrintCore 6.2 (312.5) <28C44275-6DF8-23CB-4E7A-97E128F5A390> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff81d88000 -     0x7fff81dbdff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <FBDDC46F-0B24-7F81-EBE6-9CF093CA4C8B> /usr/lib/libcups.2.dylib
    0x7fff81e61000 -     0x7fff81f21fe7  libFontParser.dylib ??? (???) <2C6B6ABB-7EF0-3CD8-97D2-9B4534D0056C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff81f23000 -     0x7fff8203afef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <7DC5239F-CD6A-820C-7C66-C528D7E27649> /usr/lib/libxml2.2.dylib
    0x7fff8203b000 -     0x7fff8205bff7  com.apple.DirectoryService.Framework 3.6 (621.3) <34B17024-866F-70AF-2098-4B5FCF57AE52> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff8206a000 -     0x7fff82095ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff82120000 -     0x7fff82122fff  libRadiance.dylib ??? (???) <E9030B43-15FA-4739-72D5-FF5DDF595354> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff82123000 -     0x7fff823a4fe7  com.apple.Foundation 6.6.2 (751.21) <83E7623F-159A-EA50-44B9-B59FBD36A393> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff823a5000 -     0x7fff823b0ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <60484D84-BA63-13DD-50E9-ABDA402C3C45> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff824b7000 -     0x7fff828fbfef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff828fc000 -     0x7fff8295aff7  com.apple.framework.IOKit 2.0 (???) <701CEEF0-953F-81FA-B983-708ADDE30543> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8297a000 -     0x7fff82988ff7  libkxld.dylib ??? (???) <5D1D0B3A-2BA3-79DD-DC2E-A2CEEAE4AA3B> /usr/lib/system/libkxld.dylib
    0x7fff82c66000 -     0x7fff82cd0fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7D8B6D68-7E70-2AF2-BF9F-2CD56145909C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff82cde000 -     0x7fff82da9fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <4CFE358A-A98F-D810-00D8-78A02E4E2578> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff82ea3000 -     0x7fff82ea4fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff82ea5000 -     0x7fff82eb4ff7  com.apple.opengl 1.6.7 (1.6.7) <4BF5C593-3666-16B2-86FF-B0C27ED28BFD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff82eb5000 -     0x7fff82f6afe7  com.apple.ink.framework 1.3.3 (107) <D76C7591-B060-E2DE-6634-968FDABD87EF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff83070000 -     0x7fff83086fef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
    0x7fff83087000 -     0x7fff8308efff  com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff833df000 -     0x7fff833e2ff7  com.apple.securityhi 4.0 (36638) <A78CE7A6-03D5-131B-2B58-ED1FCC2AEAC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff8345a000 -     0x7fff8346efff  libGL.dylib ??? (???) <A85982AB-6395-DE2B-2023-F735093E663D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8346f000 -     0x7fff83488fff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff83489000 -     0x7fff83498fff  com.apple.NetFS 3.2.1 (3.2.1) <3FC302C9-A5C6-A9CA-08CE-435AD05499F1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff834de000 -     0x7fff8355cfff  com.apple.CoreText 3.1.0 (???) <2D2DECAA-05C4-C4D0-1233-FB682569FFB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff835d0000 -     0x7fff835d0ff7  com.apple.Carbon 150 (152) <CD519A75-306B-D53E-746A-14850E92390A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff83814000 -     0x7fff83814ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff83815000 -     0x7fff83f12037  com.apple.CoreGraphics 1.543.34 (???) <31C0EC15-C448-2387-E84B-E943758A2BA3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff83f79000 -     0x7fff83fc8ff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <17EFD646-6F53-36E9-56BF-5A339E83EFFC> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x7fff83fc9000 -     0x7fff84188ff7  libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <D8F3BC70-08DE-8D03-2930-2ACC3F05F5ED> /usr/lib/libSystem.B.dylib
    0x7fff8418a000 -     0x7fff8418bff7  com.apple.TrustEvaluationAgent 1.1 (1) <306FD9EE-A301-41D5-EBDE-2FC52F28229C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff8418c000 -     0x7fff841cdfef  com.apple.QD 3.35 (???) <022EDBCA-DE3A-6410-F263-2FC7DA8FAC88> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff84216000 -     0x7fff8433bfef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4931DCF6-072F-A4FA-0989-4C4B83BDF98A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff84386000 -     0x7fff84456fff  com.apple.CFNetwork 454.9.4 (454.9.4) <434E179F-C058-4B58-E8B2-058DDC5DC6B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff84481000 -     0x7fff84487ff7  IOSurface ??? (???) <6D342A80-7C22-E633-67A5-FA51DAA601E4> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff84488000 -     0x7fff845c6fff  com.apple.CoreData 102.1 (251) <782F29CA-ACC7-4A77-5772-52FBE2CEFB5E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff845c7000 -     0x7fff845d9fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff845da000 -     0x7fff84690fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <B1F5CDC0-96BD-C7C0-BEAA-1E2259DDE067> /usr/lib/libobjc.A.dylib
    0x7fff84691000 -     0x7fff84740fff  edu.mit.Kerberos 6.5.9 (6.5.9) <1511C86A-9739-CD0C-B25F-004F2CAE7638> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff84771000 -     0x7fff84785ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff84786000 -     0x7fff847d2fff  libauto.dylib ??? (???) <205CE82B-3DE0-4A9D-CEB9-F6A3DDA22ED4> /usr/lib/libauto.dylib
    0x7fff84898000 -     0x7fff84932fff  com.apple.ApplicationServices.ATS 4.2 (???) <E31469D3-A97D-63BB-FB00-05ACB2CEC561> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff84933000 -     0x7fff849b0fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff849b9000 -     0x7fff84a6efe7  com.apple.ColorSync 4.6.3 (4.6.3) <0522B33D-F78A-9A46-1CB2-9073E4F8EFD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff84ab0000 -     0x7fff84af1fff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <0E075BF4-9E0E-08E7-8160-22AE6892F3DF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff84af2000 -     0x7fff84b43fe7  com.apple.HIServices 1.8.0 (???) <A16322D3-8EEC-9928-4730-8916C21D8187> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff84b53000 -     0x7fff84be3fff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff85090000 -     0x7fff85090ff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff85f5b000 -     0x7fff85f61ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff860e0000 -     0x7fff86129fef  libGLU.dylib ??? (???) <8E418680-E31D-C85B-F4A4-DDE013E7F367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8612a000 -     0x7fff8615bfef  libTrueTypeScaler.dylib ??? (???) <C15B0761-5136-BD0C-20F7-C8F8A95AF367> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff864e2000 -     0x7fff864e2ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff864e3000 -     0x7fff8659cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff8659d000 -     0x7fff865f2fef  com.apple.framework.familycontrols 2.0.1 (2010) <5494ABA6-0E9F-4CA2-120C-DBC240CC7FCF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff865f3000 -     0x7fff8667ffef  SecurityFoundation 36840.0.0 (compatibility 1.0.0) <B53D84B1-79EA-1AFB-0830-7A865E1F6521> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff866f0000 -     0x7fff868aafff  com.apple.ImageIO.framework 3.0.2 (3.0.1) <EB87E6F6-74CA-48E2-FB31-B866C879D538> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff86a28000 -     0x7fff86a29ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <5264A680-010D-4DD6-911E-04AD0DA3D0B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff86a2a000 -     0x7fff86a4fff7  com.apple.CoreVideo 1.6.1 (45.5) <BB098B75-BA61-50E6-FE8E-FFE285BDECE8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff86a50000 -     0x7fff86a53fff  com.apple.help 1.3.1 (41) <E311A81E-9870-A430-1E16-AFF6C92CE6E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff86a56000 -     0x7fff86a79fff  com.apple.opencl 12.1 (12.1) <81E2DFC2-2C00-AA3D-55F7-A34721213516> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff86a7a000 -     0x7fff86ac2ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff86ac3000 -     0x7fff86bdcfef  libGLProgrammability.dylib ??? (???) <69D69589-B572-20A5-7C74-EDE0A1B9A845> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff86bdd000 -     0x7fff86bddff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff86be7000 -     0x7fff86bf8ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <EAFA94DA-7A60-69AB-24A7-3E15566F596F> /usr/lib/libz.1.dylib
    0x7fff86bf9000 -     0x7fff86c40ff7  com.apple.coreui 2 (114) <BB09E685-1F5D-0676-1A0E-295610B387A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff86c41000 -     0x7fff86c7cfff  com.apple.AE 496.4 (496.4) <64C27EC8-FC7F-EA6B-9435-9A3452425915> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff86c7d000 -     0x7fff86fb0fef  com.apple.CoreServices.CarbonCore 861.6 (861.6) <80DFB173-E3FB-E232-CEDE-77AE5B3EACA2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff86fb1000 -     0x7fff86fb5ff7  libCGXType.A.dylib 543.34.0 (compatibility 64.0.0) <E3EC6546-EA24-FEA2-7EE0-BA9A880E0D98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff86fb6000 -     0x7fff87056fff  com.apple.LaunchServices 362.1 (362.1) <4529EF9C-45C7-E2E3-6726-4A5AD382566D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff87057000 -     0x7fff87215fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <8FD6F415-48EE-99A1-6B30-EE49D2ACC1E7> /usr/lib/libicucore.A.dylib
    0x7fff8735f000 -     0x7fff873a2ff7  libRIP.A.dylib 543.34.0 (compatibility 64.0.0) <7D947F07-54E1-9038-01F8-4F0D03EE96D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff873a3000 -     0x7fff87489fe7  com.apple.DesktopServices 1.5.5 (1.5.5) <BB62B39C-4FB4-5AA4-4D5D-2BE07C216BE9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff874c4000 -     0x7fff87513fef  libTIFF.dylib ??? (???) <87349890-8ACA-C2FD-D8A7-1617A27D88BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff87589000 -     0x7fff87921fe7  com.apple.QuartzCore 1.6.1 (227.18) <73B865F9-157B-F864-7214-A1FBDFD22A8A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff87922000 -     0x7fff87a31fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <5C73FE56-9A92-15B8-CA89-08E25A418DA7> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff87a32000 -     0x7fff87b0cff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff87b14000 -     0x7fff87b18ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff87b19000 -     0x7fff87b19ff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff87b1a000 -     0x7fff88324fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff883e3000 -     0x7fff883e5fff  com.apple.print.framework.Print 6.1 (237.1) <E4220665-6652-8F59-241D-59A21436DB21> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff883e6000 -     0x7fff8866bfef  com.apple.security 6.1.1 (37594) <BC09FE8A-6325-494B-C9F1-DAE768F58DC6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8890d000 -     0x7fff88a82fef  com.apple.CoreFoundation 6.6.1 (550.19) <D119AB06-B148-8FE2-3137-7BF50A29F084> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff88b0a000 -     0x7fff88b3bfff  libGLImage.dylib ??? (???) <B8F8BB6F-7E97-54F0-B1AA-0C7495C27EAE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff88b3c000 -     0x7fff88b62fe7  libJPEG.dylib ??? (???) <440FA813-F1E2-FCC3-BE63-500A45F972BE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff88b6f000 -     0x7fff88beefff  com.apple.audio.CoreAudio 3.2.2 (3.2.2) <0FBE15EE-AF44-ECEF-9862-A96A193F5AD2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff88c88000 -     0x7fff88c9efff  com.apple.ImageCapture 6.0 (6.0) <BF702F65-8E30-E318-1B58-AE6C0D5E5715> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff88c9f000 -     0x7fff88cdcff7  libFontRegistry.dylib ??? (???) <DD501984-1941-4112-7063-8F52BC336DE9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <D8F3BC70-08DE-8D03-2930-2ACC3F05F5ED> /usr/lib/libSystem.B.dylib

Model: MacBookPro6,2, BootROM MBP61.0057.B05, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f15
Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.14.7)
Bluetooth: Version 2.3.2f5, 2 service, 2 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: INTEL SSDSA2M080G2GC, 74,53 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000
USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0xfa120000
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000

I strongly hope, that I did not make a silly mistake. 

Best regards
Comment 7 kayan 2010-06-15 11:07:35 CEST
Ups, I forgot to mention that I of course did the fix explained above (placing the line "fMainWindow->setVisible(true);" in source/interfaces/basic/src/G4UIQt.cc before running "./Configure -build" )
Comment 8 garnier 2010-06-16 17:50:14 CEST
Ok, I'm try to get out your problem, I'm in the same situation on my mac OSX 10.6.4 with geant4.9.3. No problem on mac OSX 10.5...strange...I'm digging...

Laurent
Comment 9 kayan 2010-06-16 17:56:20 CEST
Hi Laurent, 

thank you very much. If there is anything I can do, pleas let me know.

Best regards

Hakan
Comment 10 garnier 2011-02-23 18:03:12 CET
Should be ok in 9.4