SEVN
Loading...
Searching...
No Matches
static_main.h
Go to the documentation of this file.
1//
2// Created by Giuliano Iorio on 2020-02-21.
3//
4
5#ifndef SEVN_STATIC_MAIN_H
6#define SEVN_STATIC_MAIN_H
7
8#include <property.h>
9#include <BinaryProperty.h>
10#include <Orbit.h>
11//Processes
12#include <Processes.h>
13#include <Collision.h>
14#include <Hardening.h>
15#include <Circularisation.h>
16#include <MTstability.h>
17#include <Windaccretion.h>
18//SN
19//SN models
20#include <supernova.h>
21#include <rapid.h>
22#include <delayed.h>
23#include <compactness.h>
24#include <directcollapse.h>
25#include <deathmatrix.h>
26//Kick models
27#include <kicks.h>
28#include <zeros.h>
29#include <specialkicks.h>
30#include <hobbs.h>
31#include <unified.h>
32//Pair instability models
33#include <pairinstability.h>
34#include <pimapelli20.h>
35#include <piiorio22.h>
36#include <pifarmer19.h>
37//Neutron star models
38#include <neutrinomassloss.h>
39#include <nmllattimer89.h>
40
41//TODO At the moment the order in which the processes and properties are evolved depend on the order we define them here.
42//TODO It is better to put some check in the derived properties to be sure that the properties that should have been evolved before have been already evolved
43
44
45
46/*******************************************
47 ******** PROPERTY STATIC INIT *************
48 *******************************************/
49
57 //TODO In all the other cases _size is called just size. Change _size to size?
64 size_t Property::_size = 0; //setting the initial size at 0.
65 vector<Property*> Property::all;
67
70 size_t Mass::ID;
71 size_t Radius::ID;
72 size_t Luminosity::ID;
73 size_t Inertia::ID;
74 size_t NextOutput::ID;
75 size_t dRdt::ID;
76 size_t Phase::ID;
77 size_t RemnantType::ID;
78 size_t Localtime::ID;
79 size_t Timestep::ID;
80 size_t Temperature::ID;
81 size_t MCO::ID;
82 size_t MHE::ID;
83 size_t RCO::ID;
84 size_t RHE::ID;
85 size_t Hsup::ID;
86 size_t HEsup::ID;
87 size_t Csup::ID;
88 size_t Nsup::ID;
89 size_t Osup::ID;
90 size_t Qconv::ID;
91 size_t Tconv::ID;
92 size_t Depthconv::ID;
93 size_t Spin::ID;
94 size_t Xspin::ID;
95 size_t dMdt::ID;
96 size_t dMHEdt::ID;
97 size_t dMCOdt::ID;
98 size_t dMcumul_binary::ID;
99 size_t dMcumul_RLO::ID;
100 size_t dMcumulacc_wind::ID;
101 size_t Bmag::ID;
102 size_t OmegaRem::ID;
103 size_t Rs::ID;
104 size_t Worldtime::ID;
105 size_t Lambda::ID;
106 size_t Ebind::ID;
107 size_t PhaseBSE::ID;
108 size_t Zams::ID;
109 size_t Event::ID;
110 size_t AngMomSpin::ID;
111 size_t OmegaSpin::ID;
112 size_t Zmet::ID;
113 size_t dMRLOdt::ID;
114 size_t dMaccwinddt::ID;
115 size_t Plife::ID;
116
117
118 //TODO to be removed
119 size_t NSsalpha::ID;
120
121
123 //size_t Mconv::ID;
124 //size_t Rconv::ID;
125 //size_t Tconv::ID;
126
132 Localtime Localtime::_localtime; //special evolve function (outside the main evolve() loop)
133 Phase Phase::_phase;//special evolve function (outside the main evolve() loop)
134 NextOutput NextOutput::_nextoutput; //special evolve function (outside the main evolve() loop)
135 Worldtime Worldtime::_worldtime; //time evolution of the simulation (it always starts from zero, independently of the localtime of the star)
136
137 //fundamental stellar parameters (They evolve from lookup tables)
138 //WARNING: Mass and Radius needs to be the first two!
145 //Optional (they can be table or derived from above properties)
157
158 //Non tab property
161 OmegaRem OmegaRem::_omegarem; //Notice OmegaRem evolves after Bmag since it depends on the updated value of Bmag
162
163
164 //derived stellar parameters. NB: They have to evolve after fundamental stellar parameters.
171 Rs Rs::_rs;
175
176 //Properties that are updated only in binary
180
181 //JIT property
191
192 //TODO to be removed;
194
195 //predict the next time step based on the calculated variations of stellar parameters
196 //WARNING:Timestep needs to be the last one!
197 Timestep Timestep::_timestep; //this needs be the very last element to evolve
198/***************************************************************************************/
199
200/**************************************************
201 *********** SN PRESCRIPTIONS *******************
202 **************************************************/
203 //SN explosions
211 //PISN prescriptions
217 // SN kick prescriptions
225 //SN presciptions
228/***************************************************************************************/
229
230/*************************************************************
231 ****** MASS TRANSFER STABILITY PRESCRIPTIONS ****************
232 *************************************************************/
233 /*** Always stable ***/
235 /*** Always unstable ***/
237 /*** Qcrit style stability ***/
246
247
248/**************************************************
249 ******** BINARY PROPERTY STATIC INIT *************
250 **************************************************/
251
252
266 size_t BinaryProperty::size = 0;
267
268
269
270//setting the initial size at 0.
271 std::vector<BinaryProperty*> BinaryProperty::all;
273
276 size_t Eccentricity::ID;
277 size_t Semimajor::ID;
278 size_t BTimestep::ID;
279 size_t BWorldtime::ID;
280 size_t dadt::ID;
281 size_t dedt::ID;
282 size_t AngMom::ID;
283 size_t Period::ID;
284 size_t GWtime::ID;
285 size_t RL0::ID;
286 size_t RL1::ID;
287 size_t BEvent::ID;
288
295 //Stuff that does not evolve but just use special_evolve
297
298 //fundamental binary parameters (they need to be evolved before other properties)
301
302 //derived binary parameters from fundamental
311
312
313 //predict the next time step based on the calculated variations of stellar and binary parameters
314 BTimestep BTimestep::_btimestep; //this needs be the very last element to evolve
315/***************************************************************************************/
316
317
318/*******************************************
319******** PROCESS STATIC INIT *************
320*******************************************/
321
335 size_t Process::size = 0;
336 std::vector<Process*> Process::all;
338
341 size_t CommonEnvelope::ID;
342 size_t RocheLobe::ID;
343 size_t SNKicks::ID;
344 size_t GWrad::ID;
345 size_t Windaccretion::ID;
346 size_t Tides::ID;
347 size_t Mix::ID;
348 size_t Kollision::ID;
349 size_t Hardening::ID;
350 size_t Circularisation::ID;
351
352
368
369 //Processes that have been already refactored
372
375
378
384
385/*******************************************
386 ****** ORBIT CHANGE STATIC INIT ***********
387 *******************************************/
388
396//map_name defined in lookup_and_phases.h
398 {TidesMode::_Tsimple, "simple"},
399 {TidesMode::_Tsimple_notab, "simple_notab"},
400 {TidesMode::_Tdisabled, "disabled_tides"}
401};
402
406
408//map_name defined in lookup_and_phases.h
410 {GWMode::_GWdisabled, "disabled_GW"},
411 {GWMode::_GWPeters, "Peters_GW"}
412};
413
416
417//RL
418//map_name defined in lookup_and_phases.h
420 {RLMode::_RLdisabled,"disabled_RL"},
421 {RLMode::_RLHurley,"Hurley_RL"},
422 {RLMode::_RLHurleyBSE,"Hurley_RL_BSE"},
423 {RLMode::_RLHurleymod,"Hurley_mod_RL"},
424 {RLMode::_RLHurleyprop,"Hurley_RL_prop"},
425};
426
432
433//Mix
435 {MixMode::_Mixdisabled,"disabled_mix"},
436 {MixMode::_Mixsimple,"simple_mix"},
437};
438
441
442//SN
444 {SNKickMode::_SNKickdisabled,"disabled_snk"},
445 {SNKickMode::_SNKickHurley,"hurley_snk"},
446};
447
450
451//CE
453 {CEMode::_CEdisabled,"disabled_ce"},
454 {CEMode::_CEEnergy,"energy_ce"},
455};
456
459
460
461
462
463#endif //SEVN_STATIC_MAIN_H
Definition: BinaryProperty.h:261
static size_t ID
Definition: BinaryProperty.h:274
static AngMom _angmom
Definition: BinaryProperty.h:275
Definition: property.h:1643
static size_t ID
Definition: property.h:1656
static AngMomSpin _angmomspin
Definition: property.h:1657
Definition: BinaryProperty.h:565
static BEvent _bevent
Definition: BinaryProperty.h:580
static size_t ID
Definition: BinaryProperty.h:579
Definition: BinaryProperty.h:479
static BTimestep _btimestep
Definition: BinaryProperty.h:499
static size_t ID
Definition: BinaryProperty.h:498
Definition: BinaryProperty.h:448
static size_t ID
Definition: BinaryProperty.h:466
static BWorldtime _bworldtime
Definition: BinaryProperty.h:467
static _PrintMap PrintMap
Definition: BinaryProperty.h:36
static std::vector< BinaryProperty * > all
Definition: BinaryProperty.h:34
std::map< std::string, size_t > _PrintMap
Definition: BinaryProperty.h:35
static size_t size
Definition: BinaryProperty.h:76
Definition: property.h:1451
static Bmag _bmag
Definition: property.h:1461
static size_t ID
Definition: property.h:1460
Definition: specialkicks.h:21
static CC15 _cc15
Definition: specialkicks.h:35
Definition: Circularisation.h:214
static CircularisationAngMom _circularisationangmom
Definition: Circularisation.h:226
Definition: Circularisation.h:62
static CircularisationDisabled _circularisationdisabled
Definition: Circularisation.h:74
Definition: Circularisation.h:19
static size_t ID
Definition: Circularisation.h:29
static Circularisation _circularisation
Definition: Circularisation.h:30
Definition: Circularisation.h:179
static CircularisationPeriastronFull _circularisationperiastronfull
Definition: Circularisation.h:191
Definition: Circularisation.h:147
static CircularisationPeriastron _circularisationperiastron
Definition: Circularisation.h:159
Definition: Circularisation.h:245
static CircularisationSemimajor _circularisationsemimajor
Definition: Circularisation.h:257
Definition: Processes.h:333
static size_t ID
Definition: Processes.h:350
static CommonEnvelope _commonenvelope
Definition: Processes.h:351
Definition: property.h:1260
static size_t ID
Definition: property.h:1269
static Csup _csup
Definition: property.h:1270
Definition: deathmatrix.h:25
static DeathMatrix _deathmatrix
Definition: deathmatrix.h:29
Definition: property.h:1413
static Depthconv _depthconv
Definition: property.h:1424
static size_t ID
Definition: property.h:1423
Definition: specialkicks.h:51
static EC15CC265 _ec15cc265
Definition: specialkicks.h:59
Definition: specialkicks.h:88
static ECUS30 _ecus30
Definition: specialkicks.h:96
Binding energy of the envelope.
Definition: property.h:2232
static Ebind _ebind
Definition: property.h:2236
static size_t ID
Definition: property.h:2235
Fundamental.
Definition: BinaryProperty.h:101
static Eccentricity _eccentricity
Definition: BinaryProperty.h:111
static size_t ID
Definition: BinaryProperty.h:110
Definition: property.h:2336
static size_t ID
Definition: property.h:2338
static Event _event
Definition: property.h:2339
Definition: Processes.h:546
static size_t ID
Definition: Processes.h:563
static GWrad _gwrad
Definition: Processes.h:564
Definition: BinaryProperty.h:340
static GWtime _gwtime
Definition: BinaryProperty.h:360
static size_t ID
Definition: BinaryProperty.h:359
Definition: property.h:1234
static size_t ID
Definition: property.h:1243
static HEsup _hesup
Definition: property.h:1244
Definition: Hardening.h:68
static HardeningDisabled _hardeningdisabled
Definition: Hardening.h:80
Definition: Hardening.h:90
static HardeningFastCluster _hardeningfastcluster
Definition: Hardening.h:102
Definition: Hardening.h:22
static size_t ID
Definition: Hardening.h:33
static Hardening _hardening
Definition: Hardening.h:34
Definition: hobbs.h:38
static Hobbs _hobbs
Definition: hobbs.h:47
Definition: hobbs.h:16
static HobbsPure _hobbspure
Definition: hobbs.h:23
Definition: property.h:1208
static Hsup _hsup
Definition: property.h:1218
static size_t ID
Definition: property.h:1217
Definition: Orbit.h:1301
static Hurley_SNKicks _Hurley_SNKicks
Definition: Orbit.h:1317
Definition: Orbit.h:1122
static Hurley_mod_rl _Hurley_mod_rl
Definition: Orbit.h:1136
Definition: Orbit.h:1049
static Hurley_rl_bse _Hurley_rl_bse
Definition: Orbit.h:1063
Definition: Orbit.h:1090
static Hurley_rl_propeller _RLHurleyprop
Definition: Orbit.h:1104
Definition: Orbit.h:834
static Hurley_rl _Hurley_rl
Definition: Orbit.h:854
Inertia.
Definition: property.h:999
static Inertia _inertia
Definition: property.h:1009
static size_t ID
Definition: property.h:1008
Definition: Collision.h:202
static KollisionDisabled _kollisiondisabled
Definition: Collision.h:214
Definition: Collision.h:151
static size_t ID
Definition: Collision.h:162
static Kollision _kollision
Definition: Collision.h:163
Definition: Collision.h:221
static KollisionHurley _kollisionhurley
Definition: Collision.h:233
Definition: property.h:2078
static Lambda _lambda
Definition: property.h:2083
static size_t ID
Definition: property.h:2082
Definition: property.h:382
static Localtime _localtime
To be added.
Definition: property.h:392
static size_t ID
Definition: property.h:391
Definition: property.h:921
static Luminosity _luminosity
Definition: property.h:931
static size_t ID
Definition: property.h:930
Definition: property.h:845
static MCO _massco
Definition: property.h:857
static size_t ID
Definition: property.h:856
Definition: property.h:815
static size_t ID
Definition: property.h:826
static MHE _masshe
Definition: property.h:827
Definition: MTstability.h:166
static MT_Stable _mt_stable
Definition: MTstability.h:208
Definition: MTstability.h:216
static MT_UnStable _mt_unstable
Definition: MTstability.h:257
Definition: property.h:776
static size_t ID
Definition: property.h:785
static Mass _mass
Definition: property.h:786
Definition: Processes.h:607
static size_t ID
Definition: Processes.h:625
static Mix _mix
Definition: Processes.h:626
Definition: neutrinomassloss.h:156
static NMLDisabled _nmldisabled
Definition: neutrinomassloss.h:165
Definition: nmllattimer89.h:20
static NMLLattimer89 _nmllattimer89
Definition: nmllattimer89.h:29
Definition: property.h:2417
static NSsalpha _nssalpha
Definition: property.h:2420
static size_t ID
Definition: property.h:2419
Definition: property.h:589
static size_t ID
Definition: property.h:599
static NextOutput _nextoutput
Definition: property.h:600
Definition: property.h:1286
static Nsup _nsup
Definition: property.h:1296
static size_t ID
Definition: property.h:1295
Definition: property.h:1476
static size_t ID
Definition: property.h:1484
static OmegaRem _omegarem
Definition: property.h:1485
Definition: property.h:1897
static OmegaSpin _omegaspin
Definition: property.h:1913
static size_t ID
Definition: property.h:1912
Definition: property.h:1312
static size_t ID
Definition: property.h:1321
static Osup _osup
Definition: property.h:1322
Definition: pairinstability.h:236
Definition: pifarmer19.h:28
static PIFarmer19 _pifarmer19
Definition: pifarmer19.h:35
Definition: piiorio22.h:31
static PIIorio22 _piiorio22
Definition: piiorio22.h:38
Definition: piiorio22.h:85
static PIIorio22Limited _piiorio22limited
Definition: piiorio22.h:92
Definition: pimapelli20.h:27
Definition: BinaryProperty.h:302
static Period _period
Definition: BinaryProperty.h:316
static size_t ID
Definition: BinaryProperty.h:315
Definition: Orbit.h:368
static Peters_gw _peters_gw
Definition: Orbit.h:385
BSE Type.
Definition: property.h:2263
static PhaseBSE _phasebse
Definition: property.h:2267
static size_t ID
Definition: property.h:2266
Definition: property.h:881
static size_t ID
Definition: property.h:890
static Phase _phase
Definition: property.h:891
Definition: property.h:2448
static size_t ID
Definition: property.h:2451
static Plife _plife
Definition: property.h:2452
static _PrintMap PrintMap
Definition: Processes.h:61
std::map< std::string, size_t > _PrintMap
Definition: Processes.h:60
static size_t size
Definition: Processes.h:140
static std::vector< Process * > all
Definition: Processes.h:59
static size_t _size
Definition: property.h:327
std::map< std::string, size_t > _PrintMap
Definition: property.h:116
static vector< Property * > all
Definition: property.h:313
static _PrintMap PrintMap
Definition: property.h:117
Definition: property.h:1348
static Qconv _qconv
Definition: property.h:1358
static size_t ID
Definition: property.h:1357
Definition: MTstability.h:475
static Qcrit_COSMIC_Claeys _qcrit_cosmic_claeys
Definition: MTstability.h:487
Definition: MTstability.h:437
static Qcrit_COSMIC_Neijssel _qcrit_cosmic_neijssel
Definition: MTstability.h:449
Definition: MTstability.h:574
static Qcrit_HRadiative_Stable _qcrit_hradiative_stable
Definition: MTstability.h:585
Definition: MTstability.h:397
static Qcrit_Hurley_Webbink_Shao _qcrit_hurley_webbink_shao
Definition: MTstability.h:409
Definition: MTstability.h:360
static Qcrit_Hurley_Webbink _qcrit_hurley_webbink
Definition: MTstability.h:372
Definition: MTstability.h:317
static Qcrit_Hurley _qcrit_hurley
Definition: MTstability.h:329
Definition: MTstability.h:542
static Qcrit_Radiative_Stable _qcrit_radiative_stable
Definition: MTstability.h:553
Definition: MTstability.h:508
static Qcrit_StarTrack _qcrit_startrack
Definition: MTstability.h:520
Definition: property.h:1158
static RCO _rco
Definition: property.h:1168
static size_t ID
Definition: property.h:1167
Definition: property.h:1118
static size_t ID
Definition: property.h:1127
static RHE _rhe
Definition: property.h:1128
Definition: BinaryProperty.h:398
static RL0 _rl0
Definition: BinaryProperty.h:413
static size_t ID
Definition: BinaryProperty.h:412
Definition: BinaryProperty.h:422
static size_t ID
Definition: BinaryProperty.h:436
static RL1 _rl1
Definition: BinaryProperty.h:437
Definition: property.h:697
static size_t ID
Definition: property.h:713
static Radius _radius
Definition: property.h:714
Definition: property.h:1502
static size_t ID
Definition: property.h:1512
static RemnantType _remnanttype
Definition: property.h:1513
Definition: Processes.h:228
static RocheLobe _rochelobe
Definition: Processes.h:250
static size_t ID
Definition: Processes.h:249
Definition: property.h:1870
static size_t ID
Definition: property.h:1874
static Rs _rs
Definition: property.h:1875
Definition: Processes.h:508
static size_t ID
Definition: Processes.h:524
static SNKicks _snkicks
Definition: Processes.h:525
Definition: BinaryProperty.h:139
static Semimajor _semimajor
Definition: BinaryProperty.h:149
static size_t ID
Definition: BinaryProperty.h:148
Definition: property.h:1927
static Spin _spin
Definition: property.h:1931
static size_t ID
Definition: property.h:1930
Definition: property.h:1385
static size_t ID
Definition: property.h:1394
static Tconv _tconv
Definition: property.h:1395
Definition: property.h:1843
static size_t ID
Definition: property.h:1860
static Temperature _temperature
Definition: property.h:1861
Definition: Orbit.h:271
static Tides_simple_notab _Tides_simple_notab
Definition: Orbit.h:286
Definition: Orbit.h:229
static Tides_simple _Tides_simple
Definition: Orbit.h:245
Definition: Processes.h:580
static Tides _tides
Definition: Processes.h:596
static size_t ID
Definition: Processes.h:595
Definition: property.h:451
static size_t ID
Definition: property.h:488
static Timestep _timestep
Definition: property.h:489
Definition: unified.h:17
static Unified _unified
Definition: unified.h:25
Definition: Windaccretion.h:106
static WindaccretionDisabled _windaccretiondisabled
Definition: Windaccretion.h:118
Definition: Windaccretion.h:18
static size_t ID
Definition: Windaccretion.h:36
static Windaccretion _windaccretion
Definition: Windaccretion.h:37
Definition: Windaccretion.h:75
static WindaccretionHurley _windaccretionhurley
Definition: Windaccretion.h:86
Definition: property.h:419
static Worldtime _worldtime
Definition: property.h:430
static size_t ID
Definition: property.h:429
Definition: property.h:1973
static size_t ID
Definition: property.h:1984
static Xspin _xspin
Definition: property.h:1985
Definition: property.h:2284
static Zams _zams
Definition: property.h:2288
static size_t ID
Definition: property.h:2287
Definition: zeros.h:15
static Zeros _zeros
Definition: zeros.h:24
Definition: property.h:2309
static Zmet _zmet
Definition: property.h:2313
static size_t ID
Definition: property.h:2312
Definition: compactness.h:26
static compactness _compactness
Definition: compactness.h:30
Definition: property.h:1754
static size_t ID
Definition: property.h:1764
static dMCOdt _dmcodt
Definition: property.h:1765
Definition: property.h:1727
static dMHEdt _dmhedt
Definition: property.h:1738
static size_t ID
Definition: property.h:1737
Definition: property.h:2363
static dMRLOdt _dmorlodt
Definition: property.h:2367
static size_t ID
Definition: property.h:2366
Definition: property.h:2387
static size_t ID
Definition: property.h:2390
static dMaccwinddt _dmaccwinddt
Definition: property.h:2391
Definition: property.h:1575
static size_t ID
Definition: property.h:1595
static dMcumul_RLO _dMcumul_RLO
Definition: property.h:1596
Definition: property.h:1539
static dMcumul_binary _dMcumul_binary
Definition: property.h:1561
static size_t ID
Definition: property.h:1560
Definition: property.h:1610
static dMcumulacc_wind _dMcumulacc_wind
Definition: property.h:1631
static size_t ID
Definition: property.h:1630
Definition: property.h:1700
static size_t ID
Definition: property.h:1714
static dMdt _dmdt
Definition: property.h:1715
Definition: property.h:1781
static size_t ID
Definition: property.h:1799
static dRdt _drdt
Definition: property.h:1800
Definition: BinaryProperty.h:209
static size_t ID
Definition: BinaryProperty.h:223
static dadt _dadt
Definition: BinaryProperty.h:224
Definition: BinaryProperty.h:235
static dedt _dedt
Definition: BinaryProperty.h:250
static size_t ID
Definition: BinaryProperty.h:249
Definition: delayed.h:54
Definition: delayed.h:25
static delayed _delayed
Definition: delayed.h:29
Definition: directcollapse.h:25
static directcollapse _directcollapse
Definition: directcollapse.h:29
Definition: Orbit.h:1417
static disabled_CE _disabled_CE
Definition: Orbit.h:1432
Definition: Orbit.h:1282
static disabled_SNKicks _disabled_SNKicks
Definition: Orbit.h:1293
Definition: Orbit.h:348
static disabled_gw _disabled_gw
Definition: Orbit.h:360
Definition: Orbit.h:1186
static disabled_mix _disabled_mix
Definition: Orbit.h:1197
Definition: Orbit.h:808
static disabled_rl _disabled_rl
Definition: Orbit.h:824
Definition: Orbit.h:211
static disabled_tides _disabled_tides
Definition: Orbit.h:221
Definition: Orbit.h:1396
static energy_CE _energy_CE
Definition: Orbit.h:1411
Definition: rapid.h:53
Definition: rapid.h:25
static rapid _rapid
Definition: rapid.h:29
Definition: Orbit.h:1206
static simple_mix _simple_mix
Definition: Orbit.h:1222
const GW_NAME gwmap_name
GW.
Definition: static_main.h:409
const TIDESMAP_NAME tidesmap_name
Tides.
Definition: static_main.h:397
std::map< GWMode, std::string > GW_NAME
Definition: lookup_and_phases.h:252
std::map< CEMode, std::string > CE_NAME
Definition: lookup_and_phases.h:260
std::map< MixMode, std::string > MIX_NAME
Definition: lookup_and_phases.h:256
std::map< RLMode, std::string > RL_NAME
Definition: lookup_and_phases.h:254
std::map< TidesMode, std::string > TIDESMAP_NAME
Definition: lookup_and_phases.h:250
const MIX_NAME mixmap_name
Definition: static_main.h:434
const CE_NAME cemap_name
Definition: static_main.h:452
std::map< SNKickMode, std::string > SNK_NAME
Definition: lookup_and_phases.h:258
const SNK_NAME snkmap_name
Definition: static_main.h:443
const RL_NAME rlmap_name
Definition: static_main.h:419
rapid_gauNS _rapid_gauns
Definition: static_main.h:207
PIDisabled _ppidisabled
Definition: static_main.h:212
PIMapelli20 _pimapelli20
Definition: static_main.h:213
delayed_gauNS _delayed_gauns
Definition: static_main.h:205