[38ba34]: / Body / AAUHuman / BodyModels / GenericBodyModel / EvaluateMomentArmsSequence.any

Download this file

53 lines (36 with data), 1.4 kB


//This file controls which calibrations to be made on the model 
AnyFolder EvaluateMomentArms=
{
    
  
 #if BM_LEG_RIGHT | BM_ARM_RIGHT
 AnyFolder Right = {};
 #endif
 #if BM_LEG_LEFT | BM_ARM_LEFT
 AnyFolder Left = {};
 #endif
 AnyFolder Trunk = {};
   
 #if BM_LEG_RIGHT & BM_LEG_MODEL_IS_TLEM & (BM_LEG_MUSCLES_RIGHT)
 #include "<BM_LEG_TLEM_PATH>/EvaluateMomentArmsSequenceRight.any"
 #endif
 
 #if BM_LEG_LEFT & BM_LEG_MODEL_IS_TLEM & (BM_LEG_MUSCLES_LEFT)
 #include "<BM_LEG_TLEM_PATH>/EvaluateMomentArmsSequenceLeft.any"  
 #endif
 
 #if BM_LEG_RIGHT & (BM_LEG_MODEL == _LEG_MODEL_LEG_) & (BM_LEG_MUSCLES_RIGHT)
 #include "../../Leg/EvaluateMomentArmsSequenceRight.any"
 #endif
 
 #if BM_LEG_LEFT & (BM_LEG_MODEL == _LEG_MODEL_LEG_) & (BM_LEG_MUSCLES_LEFT)
 #include "../../Leg/EvaluateMomentArmsSequenceLeft.any"
 #endif
 
 #if BM_ARM_RIGHT & BM_ARM_MUSCLES_RIGHT
   #include "../../Arm/MomentArmSequenceRight.any"
 #endif
 
 #if BM_ARM_LEFT & BM_ARM_MUSCLES_LEFT
   #include "../../Arm/MomentArmSequenceLeft.any"  
 #endif
  
 #if (BM_TRUNK_LUMBAR_MUSCLES != OFF)
   #include "../../Trunk/EvaluateMomentArmsSequence.any" 
 #endif
   
  AnyOperationSequence Run_all_studies ={
     /// Dummy operation to handle case when no other operations are added
     AnyOperationDummy dummy = {};
  };

  
  
};