Revision cc8b20cef00161ddca13fc69f777d08c724e69cb authored by Rene Brun on 23 September 2009, 20:21:24 UTC, committed by Rene Brun on 23 September 2009, 20:21:24 UTC

git-svn-id: http://root.cern.ch/svn/root/trunk@30388 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 1a02cb6
Raw File
fileopen.C
// @(#)etc:$Id: $
// Author: Axel Naumann, 2008-05-22
//
// This script gets executed when double-clicking a ROOT file (currently only on Windows).
// The file that got double clicked and opened is accessible as _file0.
void fileopen() 
{
   new TBrowser;
   // or, to only browse the file:
   // new TBrowser(_file0);
} 
back to top