a b/Application/Examples/BikeModel/Model/Config.any
1
//FullBodyModel LowerExtremityModel
2
#ifndef BodyModelSelection  
3
#define BodyModelSelection  "FullBodyModel"
4
#endif
5
6
7
8
#define ERRORMSG (ErrorMessage) AnyMessage MISSING_SELECTION = { TriggerPreProcess = On; Type = MSG_ErrorFatal; Message = ErrorMessage; };
9
10
//Error messages to inform about selection possibilities
11
#if BodyModelSelection  != "FullBodyModel"   &   BodyModelSelection  != "LowerExtremityModel" 
12
ERRORMSG ("In Config.any please select  BodyModelSelection to be either FullBodyModel or LowerExtremityModel.")
13
#define MISSING_SELECTION 
14
#endif  
15
16