~ubuntu-branches/ubuntu/wily/travis/wily-proposed

« back to all changes in this revision

Viewing changes to src/globalvar.cpp

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2015-05-10 11:28:34 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20150510112834-7376w30r5uor41vf
Tags: 150205-1
* New upstream release.
* debian/control (Standards-Version): Bumped to 3.9.6.
* debian/copyright: Updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
    TRAVIS - Trajectory Analyzer and Visualizer
3
3
    http://www.travis-analyzer.de/
4
4
 
5
 
    Copyright (c) 2009-2014 Martin Brehm
6
 
                  2012-2014 Martin Thomas
 
5
    Copyright (c) 2009-2015 Martin Brehm
 
6
                  2012-2015 Martin Thomas
7
7
 
8
8
    This file written by Martin Brehm and Martin Thomas.
9
9
 
26
26
#include "database.h"
27
27
#include "statistics.h"
28
28
#include "maintools.h"
29
 
 
 
29
 
 
30
 
30
31
 
31
32
CxObArray g_oaAtoms;  // Die Atomsorten der Simulation
32
33
CxObArray g_oaMolecules; // Die Molekuelsorten der Simulation
58
59
float g_fSFDFLevel[16];
59
60
float g_fSMeanFDFLevel[16];
60
61
float g_fSMaxFDFLevel[16];
61
 
char g_sRefEnv[256];
 
62
//char g_sRefEnv[256];
 
63
CxString g_sRefEnv;
62
64
bool g_bUseVelocities;
63
65
bool g_bUseForces;
64
66
float g_fBoxX, g_fBoxY, g_fBoxZ;
135
137
float g_fLMaxVel, g_fLMaxForce;
136
138
float g_fLMidVel, g_fLMidForce;
137
139
bool g_bAsciiArt;
138
 
char g_sInputVel[256];
139
 
char g_sInputForce[256];
140
 
char g_sInputCtrl[256];
 
140
//char g_sInputVel[256];
 
141
//char g_sInputForce[256];
 
142
//char g_sInputCtrl[256];
 
143
CxString g_sInputVel;
 
144
CxString g_sInputForce;
 
145
CxString g_sInputCtrl;
141
146
CDatabase *g_pDatabase;
142
147
 
143
148
CxIntArray g_laAtomSMIndex; // Enthaelt fuer jedes Atom, in welchem SingleMolecule es sich befindet, oder -1 wenn gar nicht
281
286
 
282
287
bool g_bWriteAtomwise;
283
288
 
284
 
bool g_bResp;
285
289
 
286
290
time_t g_iStartTime, g_iEndTime;
287
291
 
297
301
int g_iScanVelSteps;
298
302
int g_iScanVelStride;
299
303
 
300
 
bool g_bReact;
301
304
 
302
305
bool g_bSilentProgress;
303
306
 
313
316
 
314
317
int g_iColorIntensity;
315
318
bool g_bNPT;
316
 
char g_sNPTFile[256];
 
319
//char g_sNPTFile[256];
 
320
CxString g_sNPTFile;
317
321
FILE *g_fNPTFile;
318
322
 
319
323
bool g_bNbExchange;
337
341
int g_iDerivNext;
338
342
 
339
343
int g_iCloseAtomCounter;
340
 
bool g_bVoro;
341
344
 
342
345
bool g_bRemoveCOM;
343
346
 
344
 
int g_iVoroMemory;
 
347
 
345
348
 
346
349
bool g_bSaxonize;
347
350
 
348
351
bool g_bUnknownElements;
349
352
 
350
 
bool g_bClusterAnalysis;
351
353
 
352
354
bool g_bNeedMoleculeWrap;
353
355
 
354
 
bool g_bMicroHet;
355
356
 
356
357
bool g_bAdvanced1;
357
358
bool g_bAdvanced2;
358
359
 
359
 
bool g_bVoid;
360
360
 
361
361
bool g_bDipoleDefined;
362
362
 
364
364
 
365
365
bool g_bVoidSDF;
366
366
 
367
 
bool g_bFFGen;
368
367
 
369
368
bool g_bSaveCoordsUnchanged;
370
369
 
390
389
 
391
390
float g_fMinPeriodic;
392
391
 
393
 
bool g_bThermo;
394
392
 
395
393
bool g_bRegionAnalysis;
396
394
CxIntArray g_iaSMRegion;
426
424
double *g_fLSpecEvolveBuf;
427
425
 
428
426
bool g_bXYZ4thCol;
 
427
bool g_bXYZComment6Numbers;
429
428
bool g_bReadChargesFrom4thXYZ;
430
429
 
431
430
bool g_bPairMSD;
432
431
 
433
 
bool g_bSFac;
434
 
//CStructureFactor *g_pSFac;
435
 
 
436
 
bool g_bFESA;
437
432
 
438
433
bool g_bEnvWriteDetailedInfo;
439
434
bool g_bEnvSortNb;
453
448
bool g_bPower = false;
454
449
bool g_bIR = false;
455
450
 
456
 
bool g_bTegri;
457
451
 
458
452
CxFloatArray g_faVoronoiRadii;
459
453
bool g_bBoxNonOrtho;
489
483
int g_iCubeYMismatch = 0;
490
484
int g_iCubeZMismatch = 0;
491
485
 
492
 
bool g_bVoroSilent;
493
 
bool g_bMinimizeChargeVar;
494
 
bool g_bVoronoiMoments;
495
 
bool g_bVoroIntEquitable;
496
 
 
497
 
 
498
 
bool g_bCubeCorrectCore = false;
499
 
CxObArray g_oaCoreDensities;
500
 
int g_iCoreInterpolateX = 1;
501
 
int g_iCoreInterpolateY = 1;
502
 
int g_iCoreInterpolateZ = 1;
503
 
float g_fCoreCutoff = 2.0f;
504
 
 
505
 
char g_sAmberParmFile[1024];
 
486
 
 
487
//char g_sAmberParmFile[1024];
 
488
CxString g_sAmberParmFile;
 
489
 
 
490
 
 
491
 
 
492