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