Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
JPSvis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JuPedSim
JPSvis
Commits
d61f3e70
Verified
Commit
d61f3e70
authored
5 years ago
by
Mohcine Chraibi
Browse files
Options
Downloads
Patches
Plain Diff
Add structs of trains
parent
374ddbf4
No related branches found
No related tags found
1 merge request
!2
Trains
Pipeline
#21246
passed
5 years ago
Stage: configure
Stage: compile
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/train.h
+31
-0
31 additions, 0 deletions
src/train.h
with
31 additions
and
0 deletions
src/train.h
0 → 100644
+
31
−
0
View file @
d61f3e70
#ifndef TRAIN_VAR_H_
#define TRAIN_VAR_H_ 1
#include
"geometry/Point.h"
#include
"geometry/Transition.h"
struct
TrainTimeTable
{
int
id
;
std
::
string
type
;
int
rid
;
// room id
int
sid
;
// subroom id
double
tin
;
// arrival time
double
tout
;
//leaving time
Point
pstart
;
// track start
Point
pend
;
// track end
Point
tstart
;
// train start
Point
tend
;
// train end
int
pid
;
// Platform id
bool
arrival
;
bool
departure
;
};
struct
TrainType
{
std
::
string
type
;
int
nmax
;
// agents_max
float
len
;
//length
std
::
vector
<
Transition
>
doors
;
};
#endif
/* TRAIN_H_ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment