[root] / trunk / montecarlo / vmc / src / TGeoMCGeometry.cxx Repository:
ViewVC logotype

Log of /trunk/montecarlo/vmc/src/TGeoMCGeometry.cxx

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 41330 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 11 12:02:15 2011 UTC (3 years, 3 months ago) by axel
File length: 36087 byte(s)
Diff to previous 34810
From Andrei: Fix coverity #33862 (dereference null return value)

Revision 34810 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Aug 13 13:36:26 2010 UTC (4 years, 5 months ago) by ivana
File length: 35991 byte(s)
Diff to previous 34204
In TGeoMCGeometry:
Make sure that TGeoManager exists before each call to gGeoManager
(call gGeoManager via a function which performs a test). 
This fixes a crash in VMC examples when the VMC application builds geometry via TVirtualMC and then selects TGeant3TGeo as MC.

Revision 34204 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jun 30 09:17:37 2010 UTC (4 years, 6 months ago) by brun
File length: 35496 byte(s)
Diff to previous 27157
Fix format in Error statement

Revision 27157 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jan 15 14:05:12 2009 UTC (6 years ago) by brun
File length: 35476 byte(s)
Diff to previous 23136
From Axel:
Replace all references to Text_t by char, still keeping the definition in Rtypes.h

Revision 23136 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Apr 11 08:58:49 2008 UTC (6 years, 9 months ago) by rdm
File length: 35480 byte(s)
Diff to previous 21301
move the following directories to "montecarlo":

eg, g4root, pythia6, pythia8, vmc

Revision 21301 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Dec 10 16:21:50 2007 UTC (7 years, 1 month ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35480 byte(s)
Diff to previous 20882
From Andrei:
there was an implicit dependency of TGeoMatrix by TGeoManager.h via TGeoNavigator.h->TGeoCache.h + few other bad dependencies like: TGeoMatrix included by TGeoNode.h via TGeoPatternFinder.h  Hmm... I had to cleanup few inlines, introduce a transient matrix in TGeoNavigator (to recover the lost inlining speed) + add several #include "TGeoMatrix.h" allover where this was included and used via TGeoManager.h

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35456 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35456 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35513 byte(s)
Diff to previous 18946
remove :$ from tag line

Revision 18946 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jun 5 06:34:47 2007 UTC (7 years, 7 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35523 byte(s)
Diff to previous 17306
From Andrei & Mihaela:
- TGeoCache.cxx - All obsolete caching options/classes removed. The only remaining 2 classes are TGeoNodeCache and TGeoCacheState. No loss of functionality.

Revision 17306 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jan 12 16:03:17 2007 UTC (8 years ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35504 byte(s)
Diff to previous 17193
   TMath::Abs, TMath::Min, TMath::Max, TMath::Sign, TMath::Range
These functions are unfortunately not defined in a standard way in std::

This include is referenced by a new version of TMath.h.
As a result, TMath.h is back compatible with the previous version.

TMathBase.h is used in place of TMath.h in all the classes
that will go into the future miniCore library.
TMath.h and the TMath implementation will go into a new math sub-directory.

TString.h uses TMathBase.h instead of TMath.h.
As a result, it was necessary to include "TMath.h" in some classes
assuming that TMath was included via TString and using other functions
than the ones defined in TMathBase.h
 ----------------------------------------------------------------------

Revision 17193 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 12 16:12:55 2006 UTC (8 years, 1 month ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35484 byte(s)
Diff to previous 16107
From Ivana Hrivnacova:
TVirtualMC
- Added new function TVirtualMC::MediumId(const const Text_t* mediumName)
- Removed default implementations for the recent functions
  and made them pure anstract (=0)
- Removed deprecated function GetMedium() replaced with CurrentMedium()
- Copy constructors and assignment operators moved to private and
  their implementation is removed

TVirtualMCGeometry
TGeoMCGeometry
- Added new function TVirtualMC::MediumId(const const Text_t* mediumName)
- Removed singleton pattern (now more than one instance may exist)
- Copy constructors and assignment operators moved to private and
  their implementation is removed

Revision 16107 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 24 16:31:21 2006 UTC (8 years, 5 months ago) by rdm
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35323 byte(s)
Diff to previous 15028
Added proper copyright and license statements. All files now LGPL.

Revision 15028 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 13 20:57:20 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 35125 byte(s)
Diff to previous 14513
Fix coding conventions violations

Revision 14513 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 31 13:43:23 2006 UTC (8 years, 9 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 34946 byte(s)
Diff to previous 13289
From Ivana Hrivnacova
Fix a problem with long volume names

Revision 13289 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 18 21:20:15 2005 UTC (9 years, 2 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 34900 byte(s)
Diff to previous 12616
From Bjorn, Andrei, Ivana:
Added new functions for access to geometry:
  Bool_t GetTransformation(...);
  Bool_t GetShape(...);
  Bool_t GetMaterial(...);
  Bool_t GetMedium(...);
The old GetMedium() function is going to be deprecated
and replaced with CurrentMedium(), now added:
  Int_t CurrentMedium()

Revision 12616 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Sep 4 09:25:01 2005 UTC (9 years, 4 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 20869 byte(s)
Diff to previous 10288
Fix coding conventions violations.

Revision 10288 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 12 07:45:54 2004 UTC (10 years, 3 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 20571 byte(s)
Diff to previous 8445
From Ivana:
Added new methods for querying geometry:
  Int_t NofVolDaughters(const char* volName) const;
  const char*  VolDaughterName(const char* volName, Int_t i) const;
  Int_t        VolDaughterCopyNo(const char* volName, Int_t i) const;
  const char* CurrentVolPath();
For backward compatibility, the default implementation is
temporarily provided. To be changed to pure virtual functions
with the next release.

Revision 8445 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 19 17:42:47 2004 UTC (10 years, 10 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 18706 byte(s)
Diff to previous 7332
Mods from Ivana Hrivnacova
Do not modify (truncate) the volume names

Revision 7332 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 23 14:03:15 2003 UTC (11 years, 4 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 18399 byte(s)
Diff to previous 7040
From Ivana:
- added, corrected comments

Revision 7040 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Aug 5 22:08:24 2003 UTC (11 years, 5 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 18144 byte(s)
Diff to previous 6934
TVirtualMCGeometry copy constructor made protected instead of private.

Implement TGeoMCGeometry copy constructor.

Remove warnings about unused parameters.

Revision 6934 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue Jul 15 09:56:58 2003 UTC (11 years, 6 months ago) by brun
Original Path: trunk/vmc/src/TGeoMCGeometry.cxx
File length: 17905 byte(s)
Old directory mc is renamed vmc.
Note new classes TVirtualMCGeometry, TGeoMCGeometry.
The new vmc directory has the following backward incompatibilities;

in class TVirtualMCStack,
 SetTrack has been renamed PushTrack
 GetNextTrack is renamed PopNextTrack
 GetPrimaryForTracking is renamed PopPrimaryForTracking
 CurrentTrack is renamed GetCurrentTrackNumber
 CurrentTrackParent is renamed GetCurrentParentTrackNumber

in class TVirtualMC
 A new optional argument in the constructor
 Two new functios SetRootGeometry and IsRootGeometrySupported.

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9