An error occurred fetching the project authors.
- Nov 17, 2009
-
-
Gerardo Ganis authored
git-svn-id: http://root.cern.ch/svn/root/trunk@31244 27541ba8-7e3a-0410-8455-c3a389f83636
-
Gerardo Ganis authored
git-svn-id: http://root.cern.ch/svn/root/trunk@31243 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 13, 2009
-
-
Matevz Tadel authored
Set default geo colors. * geom_atlas_playback.C New tutorial playing a recording of a geom_atlas.C session. git-svn-id: http://root.cern.ch/svn/root/trunk@31146 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 12, 2009
-
-
Axel Naumann authored
Also state where the tutorial is ($ROOTSYS/tutorials/whatever) and link it to subversion. git-svn-id: http://root.cern.ch/svn/root/trunk@31114 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 06, 2009
-
-
Matevz Tadel authored
Add setter for number of segments of a circle - SetDrawQuality(int). * TGLEventHandler On Alt/Shift M1 down enable camera rotation. This prevents Clicked() signal to be emmitted on button release. * compound.C Set projection type. git-svn-id: http://root.cern.ch/svn/root/trunk@31016 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 05, 2009
-
-
Axel Naumann authored
Fix printf's format specifier: the thread number "nr" is long, not long long. Fixes http://root.cern.ch/phpBB2/viewtopic.php?t=9385 Remove indentation of thread numbers, they all have of single digits only. git-svn-id: http://root.cern.ch/svn/root/trunk@30980 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 30, 2009
-
-
Matevz Tadel authored
Add new 2DMode kValSizeOutline. Change default mode to kValSize. tutorials/eve/calorimeters.C Remove unnecessary line. tutorials/eve/calo_detail.C Use kValSizeOutline mode for irregular data. Add example of TGLAnnotation. git-svn-id: http://root.cern.ch/svn/root/trunk@30931 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 26, 2009
-
-
Matevz Tadel authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30869 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 24, 2009
-
-
Gerardo Ganis authored
Add argument 'cache=sz' to control the usage of the cache, e.g. runProof("eventproc(cache=0)") disables the cache. git-svn-id: http://root.cern.ch/svn/root/trunk@30861 27541ba8-7e3a-0410-8455-c3a389f83636
-
Gerardo Ganis authored
For PROOF tutorials: - add argument 'nwrk=N' to change the number of workers also on the fly, e.g. runProof("simple(nwrk=2)") - add argument 'punzip' to enable parallel unzipping, e.g. runProof("eventproc(punzip)") In the new PROOF tutorial "evenproc": - remove the need for the external file event-http.txt for the dataset creation (file names are generated on the fly) - read by default only the needed brabches; add option 'readall' to switch to full reading, e.g. runProof("eventproc(readall)") - add the possibility to change data source, e.g. runProof("eventproc(datasrc=root://lxfsrd0706.cern.ch//pool/event/http)") git-svn-id: http://root.cern.ch/svn/root/trunk@30857 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 23, 2009
-
-
Gerardo Ganis authored
Add tutorial "eventproc" reading "event" like events from the ROOT HTTP server This is useful to test the new perfomance information being added to the PROOF dialog box. git-svn-id: http://root.cern.ch/svn/root/trunk@30845 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
scaling (compression/extension) of certain space region as required by NA62 to show the 200m long detector in a meaningful way. Several generalizations of the projection infrastructure were required: 1. TEveProjectable::ProjectedClass() takes an argument: virtual TClass* ProjectedClass(const TEveProjection* p) const = 0; thus allowing different projected classes for different projections. 2. All TEveProjection::ProjectPoint/Vector(...) functions have an additional "depth" argument thus allowing the projected classes to skip explicit setting of depth after the point has been projected -- this could damage the 3rd component. Pre-scaling now supports 3 dimensions. 3. Abstract TEveProjected::SetDepth() has been split into two parts: a) It has been implemented in the base class where it checks for the projection type (2d) before calling the local function; b) Abstract SetDepthLocal() has been added to provide the same functionality. This allows for the 2d/3d check to be done in place only. 4. New projection class has been introduced: TEve3DProjection. It performs pre-scaling and offsets the center. 5. To simplify the projection of lists TEveElementList has been made projectable and corresponding TEveElementListProjected class introduced. This also fixed the problem with render-state not being propagated to projected classes. The check whether to project a sub-tree of elements is still performed. 6. TEveGeoShapeProjected has been introduced to represent the 3D projection of a TEveGeoShape (2D projection is handled by TEvePolygonSetProjected). Points, lines and tracks use the same projected class for both 2D and 3D projections. An example showing this functionality has been added as a new tab in tutorials/eve/projection_prescale.C. git-svn-id: http://root.cern.ch/svn/root/trunk@30840 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 20, 2009
-
-
Matevz Tadel authored
graf3d/gl/inc/TGLViewer: Change enum ESecSelType: remove obsolete member kNone and redefine kAlways to kOnRequest. graf3d/gl/src/TGLEventHandler: Set default secondary selection mode to kOnRequest: Buy default secondary selection is now activated also on mouse click if this is defined by TGLLogicalShape. graf3d/eve/inc/TEveElement.h: graf3d/eve/src/TEveElement.cxx: Add virtual function ForwardSelection() to allow TEveElement objects to forward its selection state. This is required in case if some other objects is managing its selection and highlight state. graf3d/eve/src/TEveSelection.cxx: In MapPickedToSelect() first check if element is forwarding a selection. graf3d/eve/inc/TEveCaloData.h graf3d/eve/src/TEveCaloData.cxx Add a member to hold a list of secondary selected cells (i.e. towers). Add a functionality to manage selection state of calorimeter objects. In order to fit in TEveSelection procedure TEveCaloData now inherits from TEveElement and manages selection state of child elements in FillImpliedSelected(). graf3d/eve/inc/TEveCalo.h: graf3d/eve/src/TEveCalo.cxx: Forward selection to TEveCaloData. Override IncImpliedSelected() to printout selected tower info. tutorials/eve/calo_detail.C Call IncDenyDestroy() on calo data, since it is TEveElement, but not added anywhere. tutorials/eve/calorimeters.C In second tab create four different calorimeter views to demonstrate secondary selection. git-svn-id: http://root.cern.ch/svn/root/trunk@30819 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 16, 2009
-
-
Lorenzo Moneta authored
this fises crash in rs701 tutorial git-svn-id: http://root.cern.ch/svn/root/trunk@30756 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30755 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 15, 2009
-
-
Rene Brun authored
This patch fixes the spelling of "function" in the root source code and documentation, which is misspelled (sometimes as part of larger "function"-based words) at least 152 times: * "funciton" 48 times * "funcion" 36 times * "funtion" 23 times * "fucntion" 17 times * "functionn" 6 times * "fuction" 6 times * "fuunction" 4 times * "functioin" 3 times * "fonction" 3 times * "funstion" twice * "fnuction" once * "functiom" once * "functio" once * "funcition" once git-svn-id: http://root.cern.ch/svn/root/trunk@30749 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30734 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 14, 2009
-
-
Olivier Couet authored
to verify that all went well. git-svn-id: http://root.cern.ch/svn/root/trunk@30732 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 13, 2009
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30710 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
* tutorials/eve - consistently use parent->AddElement(el) instead of: gEve->AddElement(el, parent) git-svn-id: http://root.cern.ch/svn/root/trunk@30704 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 09, 2009
-
-
Rene Brun authored
as well as a new macro CompareMasses.C to detect possible differences with the values read from $ROOTSYS/pdg_table.txt by TDatabasePDG. Thanks to Christian.Klein-Boesing@cern.ch git-svn-id: http://root.cern.ch/svn/root/trunk@30652 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 08, 2009
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30633 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30632 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 07, 2009
-
-
Matevz Tadel authored
TEveCaloLego/calorimeters.C: Change auto-rebin default threshold. TEveCaloLegoOverlay: Fix text align in scales. git-svn-id: http://root.cern.ch/svn/root/trunk@30600 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30599 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 02, 2009
-
-
Matevz Tadel authored
calorimeters.C: Set light color-set. TEveCaloLegoGL.cxx: Bugfix: check rebin step not to exceed nuber of bins. TEveProjectionAxes: Use Pixmap font as a defult, since it look better at small sizes. For example case window is docked. TGLAnnotation: Add option to use color-set values. Add setters and getters. git-svn-id: http://root.cern.ch/svn/root/trunk@30545 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 29, 2009
-
-
https://root.cern.ch/svn/root/branches/dev/roostatsLorenzo Moneta authored
- fix an unitialized variable in BayesianCalculator - remove log messages in LikelihoodInterval git-svn-id: http://root.cern.ch/svn/root/trunk@30524 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30518 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 28, 2009
-
-
https://root.cern.ch/svn/root/branches/dev/roostats/roofit/roostatsLorenzo Moneta authored
merge update in totorials 30515 from https://root.cern.ch/svn/root/branches/dev/roostats git-svn-id: http://root.cern.ch/svn/root/trunk@30516 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30513 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30498 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 27, 2009
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30497 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
* glplot_geom.C - new macro demonstrationg how to combine Timur's GL plots with other scene elements. git-svn-id: http://root.cern.ch/svn/root/trunk@30496 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30495 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 26, 2009
-
-
Matevz Tadel authored
calo_deta.C: Add scales in overlay. calorimeters.C: Add comments. git-svn-id: http://root.cern.ch/svn/root/trunk@30491 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30490 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30488 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
Simplify layout. Move axample of TEveCaloDataVec class to macro cms_calo_detail.C. cms_calo_detail.C: Create calo data by reading existing historam and add irregular towers to demostrate usage of TEveCalDataVec class. git-svn-id: http://root.cern.ch/svn/root/trunk@30487 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 25, 2009
-
-
Matevz Tadel authored
Move lego views to new tab. git-svn-id: http://root.cern.ch/svn/root/trunk@30475 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
are in unit box. * pythia_display.C - fix error reporting. * track.C - make macro auto-compile if called in interpreted * mode. Improve documentation. * boxset.C - add transparent 3D frame-box around the box-set. git-svn-id: http://root.cern.ch/svn/root/trunk@30474 27541ba8-7e3a-0410-8455-c3a389f83636
-