Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/Geant4/tools/wroot/cids is written in an unsupported language. File is not indexed.

0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003 
0004 #ifndef tools_wroot_cids
0005 #define tools_wroot_cids
0006 
0007 // same logic as in rroot/cids.
0008 
0009 #include "../cid"
0010 
0011 namespace tools {
0012 namespace wroot {
0013 
0014 inline cid base_cid()           {return 100;} //must be > cids in ../cids.
0015 
0016 inline cid leaf_string_cid()    {return base_cid()+11;}
0017 inline cid leaf_element_cid()   {return base_cid()+12;}
0018 inline cid leaf_object_cid()    {return base_cid()+13;}
0019 
0020 inline cid base_leaf_cid()      {return base_cid()+20;} //+12=32
0021 
0022 }}
0023 
0024 #endif