source: issm/trunk-jpl/src/c/modules/InputDuplicatex/InputDuplicatex.cpp@ 14951

Last change on this file since 14951 was 14951, checked in by Eric.Larour, 12 years ago

CHG: de-entangle dependencies between Containers and shared/Elements

File size: 861 bytes
Line 
1/*!\file InputDuplicatex
2 * \brief: duplicte an input inside the elements, onto another, and wipe it off.
3 */
4
5#include "./InputDuplicatex.h"
6#include "../../shared/shared.h"
7#include "../../classes/classes.h"
8#include "../../toolkits/toolkits.h"
9#include "../../EnumDefinitions/EnumDefinitions.h"
10
11void InputDuplicatex(Elements* elements,Nodes* nodes,Vertices* vertices,Loads* loads,Materials* materials,Parameters* parameters,int original_enum, int new_enum){
12
13 /*Go through elemnets, and ask to reinitialie the input: */
14 int i;
15 for(i=0;i<elements->Size();i++){
16 Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i));
17 element->InputDuplicate(original_enum,new_enum);
18 }
19 for(i=0;i<materials->Size();i++){
20 Material* material=(Material*)materials->GetObjectByOffset(i);
21 //material->InputDuplicate(original_enum,new_enum);
22 }
23
24}
Note: See TracBrowser for help on using the repository browser.