Import Geant4 10.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-12-09 12:35:28 +01:00
parent 4ec577e5c4
commit a3452e42ac
3514 changed files with 210500 additions and 89628 deletions
@@ -0,0 +1,23 @@
// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_wroot_cids
#define tools_wroot_cids
// same logic as in rroot/cids.
#include "../cid"
namespace tools {
namespace wroot {
inline cid base_cid() {return 100;} //must be > cids in ../cids.
inline cid leaf_string_cid() {return base_cid()+11;}
inline cid leaf_element_cid() {return base_cid()+12;}
inline cid base_leaf_cid() {return base_cid()+20;} //+12=32
}}
#endif