OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
Track.cpp
Go to the documentation of this file.
1 //
2 // Class Track
3 // Hold data for tracking.
4 // Acts as a communication area between the various tracking commands.
5 //
6 // Copyright (c) 2008 - 2020, Paul Scherrer Institut, Villigen PSI, Switzerland
7 // All rights reserved
8 //
9 // This file is part of OPAL.
10 //
11 // OPAL is free software: you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation, either version 3 of the License, or
14 // (at your option) any later version.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
18 //
19 
20 #include "Track/Track.h"
21 // #include "Algorithms/PartBunchBase.h"
22 #include "Algorithms/PartBunch.h" //FIXME
23 #ifdef ENABLE_AMR
24  #include "Algorithms/AmrPartBunch.h"
25 #endif
27 #include "Utilities/Options.h"
28 
29 Track *Track::block = 0;
30 std::stack<Track*> Track::stashedTrack;
31 
40 Track::Track(BeamSequence *u, const PartData &ref, const std::vector<double> & dt,
41  const std::vector<unsigned long long> & maxtsteps, int stepsperturn,
42  double zStart, const std::vector<double> & zStop, int timeintegrator,
43  double t0, double dtScInit, double deltaTau):
44  bunch(nullptr),
45  reference(ref),
46  use(u),
47  parser(),
48  dT(dt),
49  dtScInit(dtScInit),
50  deltaTau(deltaTau),
51  t0_m(t0),
52  localTimeSteps(maxtsteps),
53  stepsPerTurn(stepsperturn),
54  zstart(zStart),
55  zstop(zStop),
56  timeIntegrator(timeintegrator),
57  truncOrder(1)
58 {
59  if(!OpalData::getInstance()->hasBunchAllocated()) {
60 #ifdef ENABLE_AMR
61  if (Options::amr)
63  else
64 #endif
66  }
67 
69 }
70 
71 
73 {}
74 
75 void Track::stash() {
76  PAssert_EQ(stashedTrack.size(), 0);
77 
78  stashedTrack.push(block);
79  block = 0;
80 }
81 
83  delete block;
84  block = stashedTrack.top();
85  stashedTrack.pop();
86 
87  return block;
88 }
#define PAssert_EQ(a, b)
Definition: PAssert.h:104
bool amr
Enable AMR if true.
Definition: Options.cpp:99
The base class for all OPAL beam lines and sequences.
Definition: BeamSequence.h:32
void setPartBunch(PartBunchBase< double, 3 > *p)
Definition: OpalData.cpp:372
static OpalData * getInstance()
Definition: OpalData.cpp:195
PartBunchBase< double, 3 > * getPartBunch()
Definition: OpalData.cpp:376
Particle reference data.
Definition: PartData.h:35
Definition: Track.h:33
PartBunchBase< double, 3 > * bunch
The particle bunch to be tracked.
Definition: Track.h:44
~Track()
Definition: Track.cpp:72
static Track * pop()
Definition: Track.cpp:82
static Track * block
The block of track data.
Definition: Track.h:56
static void stash()
Definition: Track.cpp:75
static std::stack< Track * > stashedTrack
Definition: Track.h:100