ID |
Date |
Author |
Topic |
Subject |
23
|
12 Jul 2020 |
Thomas Lindner | Bug Report | Compiling rootana on Macos 10.15.4 |
I had some trouble building rootana on my new laptop, running MacOS 10.15.4 (Xcode 11.5).
Most of rootana compiled fine, but the steps with rootcint fail. For instance:
rootcint -f obj/TMainDisplayWindowDict.cxx -DHAVE_ROOT -DOS_LINUX -DOS_DARWIN -I./include
include/TMainDisplayWindow.hxx include/TMainDisplayWindow_LinkDef.h
In file included from input_line_12:12:
In file included from ./include/TMainDisplayWindow.hxx:4:
In file included from /Applications/root_v6.18.99/include/TGClient.h:27:
In file included from /Applications/root_v6.18.99/include/TString.h:26:
In file included from /Applications/root_v6.18.99/include/TMathBase.h:32:
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cmath:317:9: error: no member named
'signbit' in the global namespace
using ::signbit;
~~^
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cmath:318:9: error: no member named
'fpclassify' in the global namespace
using ::fpclassify;
~~^
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cmath:319:9: error: no member named
'isfinite' in the global namespace
using ::isfinite;
~~^
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cmath:320:9: error: no member named 'isinf'
in the global namespace
using ::isinf;
~~^
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cmath:321:9: error: no member named 'isnan'
in the global namespace
This is probably a problem with my Xcode installation. But I found a work-around, which was explicitly
defining CPATH before the rootcint command in the Makefile:
obj/TMainDisplayWindowDict.cxx obj/TRootanaDisplayDict.cxx obj/TFancyHistogramCanvasDict.cxx:
obj/%Dict.cxx:
CPATH=/usr/local/include rootcint -f $@ $(CXXFLAGS_ROOTCINT) -I./include include/$*.hxx
include/$*_LinkDef.h
obj/TNetDirectoryDict.cxx: obj/%Dict.cxx:
CPATH=/usr/local/include rootcint -f $@ $(CXXFLAGS_ROOTCINT) -I./include include/$*.h
include/$*_LinkDef.h
As I say, this is probably a problem with my installation; but I include the work-around in case it is helpful.
In the medium term we will try to remove the dependence on the old, ugly rootcint, since it often has
problems. |
22
|
22 May 2020 |
Konstantin Olchanski | Info | rootana updates |
I am updating the rootana code to include all the latest developments in midas and
elsewhere:
- mxml, mjson (and soon mvodb, midasio and manalyzer) are moving into git submodules
(shared with midas and usable as standalone code)
- VirtualOdb is gone, use MVOdb instead
- TMidasFile is gone, use TMReader and TMWriter in midasio.h
- TMidasEvent remains, I will update it with Stefan's to the midas bank format.
- TMEvent in midasio.h will also be updated for this
- TMEvent has incomplete implementation for creating new events and adding data banks, I
hope to fix this. This should make midasio classes useful for writing MIDAS frontends.
- I am still thinking about what to do with roody and the XmlServer, MidasServer and
NetDirectory code. Most likely remove it all and concentrate in supporting JSROOT and the
associated ROOT-built-in web server. Maybe update roody to use the JSROOT interface to
get data from the analyzer.
If you do not want to see all these changes, please use the rootana-2020-03 release
branch.
After all changes are implemented and tested, I will cut a release branch and post an
announcement.
K.O. |
21
|
22 May 2020 |
Konstantin Olchanski | Release | rootana-2020-03 |
I cut a release branch and tag for rootana-2020-03. This release is meant to be used with
midas release 2020-03.
More recent versions of midas have several incompatibilities with ROOTANA, and I will
be working on resolving them:
- new incompatible data bank format in midas .mid files. (to fix the 64-bit misalignment bug)
- renaming of MIDAS TID_xxx types
- renaming of MIDAS data types in XML ODB dump files.
When we tag the next midas release, we will tag the compatible ROOTANA release and going
forward hope to have MIDAS and ROOTANA releases done in lock-step.
K.O. |
20
|
10 Mar 2020 |
Konstantin Olchanski | Info | web display of MIDAS data using rootana+THttpServer |
> >
> > 2) The 'same-origin policy' means ...
> > https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS
> >
>
> The MIDAS web server mhttpd already implements CORS, so you can access mhttpd AJAX and JSON-RPC from external web pages, no need to proxy.
> Does the ROOT web server NOT implement CORS? We should file a bug report with ROOT if it does not.
For the record, the web server in ROOT 6.20 does implement CORS via the "cors=" option, see
https://github.com/root-project/jsroot/blob/master/docs/HttpServer.md
K.O. |
Draft
|
22 Oct 2019 |
Lukas Gerritzen | Bug Report | |
|
18
|
14 Aug 2019 |
Konstantin Olchanski | Bug Report | cannot find dictionary module TMainDisplayWindowDict_rdict.pcm |
> cannot find dictionary module TMainDisplayWindowDict_rdict.pcm
this problem is not unique to ROOTANA and ROODY, take a search for this problem (and solutions) on the ROOT forum...
K.O. |
17
|
14 Aug 2019 |
Konstantin Olchanski | Bug Report | ROOTANA installation fails (ss_suspend_set_dispatch_ipc(NULL); not declared) |
(please send elog messages in "plain text" mode, otherwise I cannot quote your text)
The problem with missing ss_suspend_set_dispatch_ipc() is now fixed, rootana commit
https://bitbucket.org/tmidas/rootana/commits/52fdedb5745fa9b6739a16a6faab8b9d40108045
If you run rootana online in graphical mode (or call TMidasOnline::sleep() yourself), you may re-encounter
the problem of recursive calls to the event handler, depending on which version of MIDAS you use. The
probability of this problem happening is probably reduced to zero in all 2019 MIDAS releases and it is
definitely fixed in the most recent commits to MIDAS (this will be the midas-2019-09 release, most likely).
Read more here:
https://midas.triumf.ca/elog/Midas/1663
K.O. |
16
|
08 Aug 2019 |
Thomas Lindner | Bug Report | ROOTANA installation fails (ss_suspend_set_dispatch_ipc(NULL); not declared) |
Hi Lauren,
Do you see an actual problem that results from those error messages? As I mentioned before [1] I get that error message, but it doesn't seem to actually cause a problem.
Thomas
[1] https://midas.triumf.ca/elog/Rootana/12
Lauren Manton wrote: |
Hi,
Thank you, commenting out the line worked and we can now compile the code. However, when we try to run ana.exe or anaDisplay.exe, we get the following errors:
Error in <TCling::RegisterModule>: cannot find dictionary module TMainDisplayWindowDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module TRootanaDisplayDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module TFancyHistogramCanvasDict_rdict.pcm
We see that the files are in /rootana/obj but we cannot find a way to point the compiler to them.
Could you please advise how to proceed,
Many thanks
Paolo Baesso wrote: |
Good afternoon, I am following the instructions provided here to install ROOTANA (and MIDAS, more in general). When I try to make I get the following error
libMidasInterface/TMidasOnline.cxx: In member function ‘bool TMidasOnline::sleep(int)’: libMidasInterface/TMidasOnline.cxx:194:3: error: ‘ss_suspend_set_dispatch_ipc’ was not declared in this scope
ss_suspend_set_dispatch_ipc(NULL);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
libMidasInterface/TMidasOnline.cxx:194:3: note: suggested alternative: ‘ss_suspend_set_rpc_thread’
ss_suspend_set_dispatch_ipc(NULL);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
ss_suspend_set_rpc_thread
Makefile:339: recipe for target 'obj/TMidasOnline.o' failed make: *** [obj/TMidasOnline.o] Error 1
And the compilation stops. Is this a known issue?
My system is Ubuntu 18 and I am running ROOT 6.18.00
|
|
|
15
|
08 Aug 2019 |
Lauren Manton | Bug Report | ROOTANA installation fails (ss_suspend_set_dispatch_ipc(NULL); not declared) |
Hi,
Thank you, commenting out the line worked and we can now compile the code. However, when we try to run ana.exe or anaDisplay.exe, we get the following errors:
Error in <TCling::RegisterModule>: cannot find dictionary module TMainDisplayWindowDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module TRootanaDisplayDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module TFancyHistogramCanvasDict_rdict.pcm
We see that the files are in /rootana/obj but we cannot find a way to point the compiler to them.
Could you please advise how to proceed,
Many thanks
Paolo Baesso wrote: |
Good afternoon, I am following the instructions provided here to install ROOTANA (and MIDAS, more in general). When I try to make I get the following error
libMidasInterface/TMidasOnline.cxx: In member function ‘bool TMidasOnline::sleep(int)’: libMidasInterface/TMidasOnline.cxx:194:3: error: ‘ss_suspend_set_dispatch_ipc’ was not declared in this scope
ss_suspend_set_dispatch_ipc(NULL);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
libMidasInterface/TMidasOnline.cxx:194:3: note: suggested alternative: ‘ss_suspend_set_rpc_thread’
ss_suspend_set_dispatch_ipc(NULL);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
ss_suspend_set_rpc_thread
Makefile:339: recipe for target 'obj/TMidasOnline.o' failed make: *** [obj/TMidasOnline.o] Error 1
And the compilation stops. Is this a known issue?
My system is Ubuntu 18 and I am running ROOT 6.18.00
|
|
14
|
24 Jul 2019 |
Paolo Baesso | Bug Report | ROOTANA installation fails (ss_suspend_set_dispatch_ipc(NULL); not declared) |
Good afternoon, I am following the instructions provided here to install ROOTANA (and MIDAS, more in general). When I try to make I get the following error
libMidasInterface/TMidasOnline.cxx: In member function ‘bool TMidasOnline::sleep(int)’: libMidasInterface/TMidasOnline.cxx:194:3: error: ‘ss_suspend_set_dispatch_ipc’ was not declared in this scope
ss_suspend_set_dispatch_ipc(NULL);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
libMidasInterface/TMidasOnline.cxx:194:3: note: suggested alternative: ‘ss_suspend_set_rpc_thread’
ss_suspend_set_dispatch_ipc(NULL);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
ss_suspend_set_rpc_thread
Makefile:339: recipe for target 'obj/TMidasOnline.o' failed make: *** [obj/TMidasOnline.o] Error 1
And the compilation stops. Is this a known issue?
My system is Ubuntu 18 and I am running ROOT 6.18.00 |
13
|
18 Jul 2019 |
Hassan | Bug Report | Cannot find dictionary modules |
Hi,
We are getting these warning of dictionary modules missing and nothing happens. I would have expected some graphical
interface to load up. I have tried copying these .pcm files from the packages/rootana/obj folder to
packages/rootana/examples, now the missing dictionary module complaint goes away but no graphical interface loads up.
Could you please assist with this?
Kind regards,
Hassan
> Hi,
>
> I just wanted to be certain about how serious this problem is. These error message always happens for me when I
> run on macos machine as well. But the errors don't seem to have any real effect; my programs still run fine.
>
> Is that the case for you too? You get the error messages, but everything still works?
>
> If so, then I agree that it would be nice to fix, but it is less critical; I will try to get to it.
>
> Cheers,
> Thomas
>
> > Hello,
> >
> > We've been attempting to make and run the executables in the
> > /packages/rootana/examples directory and have come across the same/similar
> > errors for each of them regarding missing dictionary modules:
> >
> > [lm17773@it038146 examples]$ ./ana.exe
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TFancyHistogramCanvasDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TMainDisplayWindowDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TRootanaDisplayDict_rdict.pcm
> > Using THttpServer in read/write mode
> > ================================================================================
> > [lm17773@it038146 examples]$ ./anaDisplay.exe
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TMainDisplayWindowDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TRootanaDisplayDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TFancyHistogramCanvasDict_rdict.pcm
> > TDT724Waveform done init......
> > Create Histos
> > Create Histos
> > Adding new canvas in tab named 'V1720 Waveforms'
> > Adding new canvas in tab named 'V1720 Correlations'
> > Adding new canvas in tab named 'DT724 Waveforms'
> > Adding new canvas in tab named 'TRB3 Histograms'
> > Adding new canvas in tab named 'TRB3 Fine Histograms'
> > Adding new canvas in tab named 'TRB3 Diff Histograms'
> > ===============================================================================
> > [lm17773@it038146 examples]$ ./midas2root.exe
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TFancyHistogramCanvasDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TMainDisplayWindowDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TRootanaDisplayDict_rdict.pcm
> > Create main window!
> > ==============================================================================
> > [lm17773@it038146 examples]$ ./root_server.exe
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TFancyHistogramCanvasDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TMainDisplayWindowDict_rdict.pcm
> > Error in <TCling::RegisterModule>: cannot find dictionary module
> > TRootanaDisplayDict_rdict.pcm
> > Using THttpServer in read/write mode
> >
> > Please can you help us locate these modules?
> >
> > Thanks! |
12
|
16 Jul 2019 |
Thomas Lindner | Bug Report | Cannot find dictionary modules |
Hi,
I just wanted to be certain about how serious this problem is. These error message always happens for me when I
run on macos machine as well. But the errors don't seem to have any real effect; my programs still run fine.
Is that the case for you too? You get the error messages, but everything still works?
If so, then I agree that it would be nice to fix, but it is less critical; I will try to get to it.
Cheers,
Thomas
> Hello,
>
> We've been attempting to make and run the executables in the
> /packages/rootana/examples directory and have come across the same/similar
> errors for each of them regarding missing dictionary modules:
>
> [lm17773@it038146 examples]$ ./ana.exe
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TFancyHistogramCanvasDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TMainDisplayWindowDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TRootanaDisplayDict_rdict.pcm
> Using THttpServer in read/write mode
> ================================================================================
> [lm17773@it038146 examples]$ ./anaDisplay.exe
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TMainDisplayWindowDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TRootanaDisplayDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TFancyHistogramCanvasDict_rdict.pcm
> TDT724Waveform done init......
> Create Histos
> Create Histos
> Adding new canvas in tab named 'V1720 Waveforms'
> Adding new canvas in tab named 'V1720 Correlations'
> Adding new canvas in tab named 'DT724 Waveforms'
> Adding new canvas in tab named 'TRB3 Histograms'
> Adding new canvas in tab named 'TRB3 Fine Histograms'
> Adding new canvas in tab named 'TRB3 Diff Histograms'
> ===============================================================================
> [lm17773@it038146 examples]$ ./midas2root.exe
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TFancyHistogramCanvasDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TMainDisplayWindowDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TRootanaDisplayDict_rdict.pcm
> Create main window!
> ==============================================================================
> [lm17773@it038146 examples]$ ./root_server.exe
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TFancyHistogramCanvasDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TMainDisplayWindowDict_rdict.pcm
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TRootanaDisplayDict_rdict.pcm
> Using THttpServer in read/write mode
>
> Please can you help us locate these modules?
>
> Thanks! |
11
|
16 Jul 2019 |
Konstantin Olchanski | Bug Report | Cannot find dictionary modules |
> [lm17773@it038146 examples]$ ./ana.exe
> Error in <TCling::RegisterModule>: cannot find dictionary module
> TFancyHistogramCanvasDict_rdict.pcm
It is a problem inside ROOT. The pcm files replaced the dict.h files during the switch from CINT in
ROOTv5 to LLVM in ROOTv6. But they have a mistake and use the wrong path for finding these files.
I.e. search for "cannot find dictionary module" on the ROOT forum https://root-forum.cern.ch
K.O. |
10
|
16 Jul 2019 |
Hassan | Bug Report | Cannot find dictionary modules |
Hello,
We've been attempting to make and run the executables in the
/packages/rootana/examples directory and have come across the same/similar
errors for each of them regarding missing dictionary modules:
[lm17773@it038146 examples]$ ./ana.exe
Error in <TCling::RegisterModule>: cannot find dictionary module
TFancyHistogramCanvasDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TMainDisplayWindowDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TRootanaDisplayDict_rdict.pcm
Using THttpServer in read/write mode
================================================================================
[lm17773@it038146 examples]$ ./anaDisplay.exe
Error in <TCling::RegisterModule>: cannot find dictionary module
TMainDisplayWindowDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TRootanaDisplayDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TFancyHistogramCanvasDict_rdict.pcm
TDT724Waveform done init......
Create Histos
Create Histos
Adding new canvas in tab named 'V1720 Waveforms'
Adding new canvas in tab named 'V1720 Correlations'
Adding new canvas in tab named 'DT724 Waveforms'
Adding new canvas in tab named 'TRB3 Histograms'
Adding new canvas in tab named 'TRB3 Fine Histograms'
Adding new canvas in tab named 'TRB3 Diff Histograms'
===============================================================================
[lm17773@it038146 examples]$ ./midas2root.exe
Error in <TCling::RegisterModule>: cannot find dictionary module
TFancyHistogramCanvasDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TMainDisplayWindowDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TRootanaDisplayDict_rdict.pcm
Create main window!
==============================================================================
[lm17773@it038146 examples]$ ./root_server.exe
Error in <TCling::RegisterModule>: cannot find dictionary module
TFancyHistogramCanvasDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TMainDisplayWindowDict_rdict.pcm
Error in <TCling::RegisterModule>: cannot find dictionary module
TRootanaDisplayDict_rdict.pcm
Using THttpServer in read/write mode
Please can you help us locate these modules?
Thanks! |
9
|
09 May 2017 |
Konstantin Olchanski | Info | web display of MIDAS data using rootana+THttpServer |
>
> 2) The 'same-origin policy' means that you need to setup some sort of proxying so that the custom web page can access the
> ROOT webpage. So, let's suppose in your case that you had the following ports for web servers:
> [1] https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS
>
The MIDAS web server mhttpd already implements CORS, so you can access mhttpd AJAX and JSON-RPC from external web pages, no need to proxy.
Does the ROOT web server NOT implement CORS? We should file a bug report with ROOT if it does not.
K.O. |
8
|
03 May 2017 |
Thomas Lindner | Info | web display of MIDAS data using rootana+THttpServer |
>
> Hi Thomas,
>
> > All details on setting up that example are here:
> >
> > https://midas.triumf.ca/MidasWiki/index.php/Rootana_javascript_displays#Custom_web_display
>
> I am trying to test the webdisplay but I am not sure which would be the path:
>
> I start the THttpServer with:
>
> $ ana.exe -r9091
>
> But on the url:
>
> http://localhost:9091/
>
> I find just the default browser provided by JSROOT, while nothing is found on:
>
> http://localhost:9091/CS/webdisplay
>
> Where am I supposed to find the custom webdisplay provided by you?
Hi Alberto,
I have added some additional details to the MediaWiki page that you referenced above. The main point is as follows:
1) You need to setup a custom MIDAS webpage to point towards the example code in
rootana/examples/html/generic_webdisplay.html
This means you need to add new entries to the ODB directory /Custom
2) The 'same-origin policy' means that you need to setup some sort of proxying so that the custom web page can access the
ROOT webpage. So, let's suppose in your case that you had the following ports for web servers:
ROOT webserver: localhost:9091
MIDAS webserver: localhost:8081
so in that case you would want to setup an APACHE proxy so that
localhost -> localhost:8081 (for the MIDAS server)
localhost/rootana -> localhost:9091 (for the ROOT server)
then the custom page would be available at
localhost/CS/webdisplay
Please read my updated documentation and see if this makes any more sense.
[1] https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS |
7
|
03 May 2017 |
Alberto Remoto | Info | web display of MIDAS data using rootana+THttpServer |
Hi Thomas,
> All details on setting up that example are here:
>
> https://midas.triumf.ca/MidasWiki/index.php/Rootana_javascript_displays#Custom_web_display
I am trying to test the webdisplay but I am not sure which would be the path:
I start the THttpServer with:
$ ana.exe -r9091
But on the url:
http://localhost:9091/
I find just the default browser provided by JSROOT, while nothing is found on:
http://localhost:9091/CS/webdisplay
Where am I supposed to find the custom webdisplay provided by you?
Thank you, Alberto. |
6
|
26 Jan 2017 |
Pierre Gorel | Info | web display of MIDAS data using rootana+THttpServer |
> I'm interested in any feedback on which plotting style people prefer (or any other
> aspects of the rootana webdisplay).
I personally prefer the ROOT style. It seems that they are equivalent, but it is possible to
change to log scale in X, Y (and Z for 2D) by simple click right on the plot. I cannot find
this feature in plot-ly. Unfortunately, it comes back to linear at the next refresh it seems...
Also, I prefer the 1D histograms as colums, not a segments. |
5
|
25 Jan 2017 |
Thomas Lindner | Info | web display of MIDAS data using rootana+THttpServer |
I have added some additional features to the example webdisplay that we have for
ROOTANA data (where we are displaying rootana data through ROOT THttpServer).
The main improvement to the display is that I added the ability to plot the data
using the JSROOT package [1]. Previously I had used different packages (dygraphs
and plot-ly) for plotting. The JSROOT plots are not obviously superior, though they
do present data in a more familiar way (at least for me). The rootana webdisplay
currently allows you to switch between the two different styles.
You can see a working example of the webdisplay here:
https://midastestdaq.triumf.ca/CS/webdisplay
(username/pwd: testdaq/testdaq)
All details on setting up that example are here:
https://midas.triumf.ca/MidasWiki/index.php/Rootana_javascript_displays#Custom_web_display
I'm interested in any feedback on which plotting style people prefer (or any other
aspects of the rootana webdisplay).
[1] https://root.cern/js/ |
4
|
30 Sep 2016 |
Konstantin Olchanski | Info | ROOT v6 status |
> ROOT v6 has been around for a while now, finally got around to test it with ROOTANA.
The problems with loading rdict.pcm files and c++ .h header files is resolved, ROOTANA should be fully usable with ROOTv6:
Put this in your login file:
export ROOTANASYS=$HOME/packages/rootana
export ROOT_INCLUDE_PATH=$ROOTANASYS/include
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ROOTANASYS/obj
Explanation:
- LD_LIBRARY_PATH is used to search for rdict.pcm files.
- ROOT_INCLUDE_PATH is used to find the c++ .h header files.
K.O. |