]>
Commit | Line | Data |
---|---|---|
fe4da5cc | 1 | |
2 | # ROOT Environment settings are handled via the class TEnv. To see | |
3 | # which values are active do: gEnv->Print(). | |
4 | ||
ce3777a3 | 5 | # Temporary change to avoid thrashing |
6 | XNet.ReadCacheSize: 40000000 | |
56294b7e | 7 | XNet.ReadAheadSize: 1000000 |
ce3777a3 | 8 | |
fe4da5cc | 9 | # Path used by dynamic loader to find shared libraries and macros |
10 | # Paths are different for Unix and Windows. The example shows the defaults | |
11 | # for all ROOT applications for either Unix or Windows. | |
9369db72 | 12 | Unix.*.Root.DynamicPath: .:$(ROOTSYS)/lib:$(LD_LIBRARY_PATH) |
fe4da5cc | 13 | Unix.*.Root.MacroPath: .:$(ROOTSYS)/macros:$(ALICE_ROOT)/macros |
14 | WinNT.*.Root.DynamicPath: ./;$(ROOTSYS);$(ROOTSYS)/bin;$(PATH) | |
15 | WinNT.*.Root.MacroPath: ./;$(ROOTSYS)/macros | |
16 | ||
9369db72 | 17 | # Fix include path for aclic |
dd2f107a | 18 | ACLiC.IncludePaths: -I$(ALICE_ROOT)/include -I$(ALICE_ROOT) |
9369db72 | 19 | |
fe4da5cc | 20 | # Path where to look for TrueType fonts |
21 | #Unix.*.Root.UseTTFonts: true | |
22 | #Unix.*.Root.TTFontPath: $(ROOTSYS)/ttf/fonts | |
23 | ||
24 | # Show where item is found in the specified path | |
25 | Root.ShowPath: false | |
26 | ||
27 | # Activate memory statistics (size and cnt is used to trap allocation of | |
28 | # blocks of a certain size after cnt times) | |
29 | Root.MemStat: 0 | |
30 | Root.MemStat.size: -1 | |
31 | Root.MemStat.cnt: -1 | |
32 | Root.ObjectStat: 0 | |
33 | ||
34 | # Global debug mode. When >0 turns on progressively more details debugging. | |
35 | # When >4 X11 runs in synchronous mode. | |
36 | #Root.Debug: 0 | |
37 | ||
38 | # Default editor | |
39 | Unix.*.Editor: emacs | |
40 | WinNT.*.Editor: notepad | |
41 | ||
42 | # TCanvas specific settings. Opaque move and resize show full pad during | |
43 | # the operation instead of only the outline. Especially for resize you'll | |
44 | # need serious CPU power. UseScreenFactor=true means to size canvas according | |
45 | # to size of screen, so a canvas still looks good on a low resolution | |
46 | # laptop screen without having to change canvas size in macros. | |
47 | # HighLightColor 2 = red. ShowEventStatus allows the event status bar to | |
48 | # be turned on by default. | |
49 | Canvas.MoveOpaque: false | |
50 | Canvas.ResizeOpaque: false | |
51 | Canvas.UseScreenFactor: true | |
52 | Canvas.HighLightColor: 2 | |
53 | Canvas.ShowEventStatus: false | |
54 | ||
55 | # THtml specific settings. | |
56 | #Root.Html.OutputDir: html/ | |
57 | #Unix.*.Root.Html.SourceDir: ./:src/ | |
58 | #WinNT.*.Root.Html.SourceDir: ./ | |
59 | #Root.Html.Author: //*-- Author : | |
60 | #Root.Html.Author: Fons Rademakers | |
61 | #Root.Html.Copyright: * Copyright | |
62 | #Root.Html.LastUpdate: //*CMZ : | |
63 | #Root.Html.Description: //____________________ | |
64 | #Root.Html.Root: http://root.cern.ch/root/html | |
65 | #Root.Html.SearchEngine: ../Search.phtml | |
66 | ||
67 | # GUI specific settings | |
68 | #Gui.NormalFont: -adobe-helvetica-medium-r-*-*-12-*-*-*-*-*-iso8859-1 | |
69 | #Gui.BoldFont: -adobe-helvetica-bold-r-*-*-12-*-*-*-*-*-iso8859-1 | |
70 | #Gui.SmallFont: -adobe-helvetica-medium-r-*-*-10-*-*-*-*-*-iso8859-1 | |
71 | #Gui.ProportionalFont: -adobe-courier-medium-r-*-*-12-*-*-*-*-*-iso8859-1 | |
72 | #Gui.BackgroundColor: #c0c0c0 | |
73 | #Gui.ForegroundColor: black | |
74 | #Gui.SelectForegroundColor: white | |
75 | #Gui.SelectBackgroundColor: #000080 | |
76 | #Gui.IconPath: $(HOME)/icons:$(ROOTSYS)/icons:. | |
77 | #Gui.MimeTypeFile: $(HOME)/.root.mimes | |
78 | # If above does not exists defaults to this: | |
79 | #Gui.MimeTypeFile: $ROOTSYS/icons/root.mimes | |
80 | # Can be either small, big, list, details | |
81 | Browser.IconStyle: small | |
82 | # Can be either name, type, size, date | |
83 | Browser.SortBy: name | |
84 | ||
85 | # Rint (interactive ROOT executable) specific alias, logon and logoff macros | |
86 | Rint.Load: rootalias.C | |
87 | Rint.Logon: rootlogon.C | |
88 | Rint.Logoff: rootlogoff.C | |
89 | Rint.History: $(HOME)/.root_hist | |
90 | ||
91 | # Example of custom setting for the Rint application (root.exe). | |
92 | # This overrides the default specified above for a generic application. | |
93 | # Color 5 is yellow. | |
94 | Rint.Canvas.HighLightColor: 5 | |
95 |