OpenAtom  Version1.5a
initializeUber.C
1 #ifndef _INITIALIZEUBER_C
2 #define _INITIALIZEUBER_C
3  /** \addtogroup Uber */
4  /**@{*/
5  // bump all the INT_MAPs to the right size
6  AtomImaptable.resize(config.numInstances);
7  PIBImaptable.resize(config.numInstances);
8  GSImaptable.resize(config.numInstances);
9  RSImaptable.resize(config.numInstances);
10  RPPImaptable.resize(config.numInstances);
11  RhoGSImaptable.resize(config.numInstances);
12  RhoRSImaptable.resize(config.numInstances);
13 
14  RhoGHartImaptable.resize(config.numInstances);
15  RhoRHartImaptable.resize(config.numInstances);
16 
17  // bump all our proxy vecs to the right size
18  UgSpacePlaneProxy.reserve(config.numInstances);
19  UgSpaceDriverProxy.reserve(config.numInstances);
20  UparticlePlaneProxy.reserve(config.numInstances);
21  UrealParticlePlaneProxy.reserve(config.numInstances);
22  UrealSpacePlaneProxy.reserve(config.numInstances);
23  UrhoRealProxy.reserve(config.numInstances);
24  UrhoGProxy.reserve(config.numInstances);
25  UrhoRHartExtProxy.reserve(config.numInstances);
26  UrhoGHartExtProxy.reserve(config.numInstances);
27  UatomsComputeProxy.reserve(config.numInstances);
28  UatomsCacheProxy.reserve(config.numInstances);
29  UegroupProxy.reserve(config.numInstances);
30  UfftCacheProxy.reserve(config.numInstances);
31  UsfCacheProxy.reserve(config.numInstances);
32  UsfCompProxy.reserve(config.numInstances);
33  UeesCacheProxy.reserve(config.numInstances);
34  UplaneUsedByNLZ.reserve(config.numInstances);
35  UlsRhoRealProxy.reserve(config.numInstances);
36  UlsRhoGProxy.reserve(config.numInstances);
37  UavailProcs.reserve(config.numInstances);
38  excludePes=NULL;
39 #endif