Changes between Version 2 and Version 3 of Plugin
- Timestamp:
- May 5, 2016, 6:03:41 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Plugin
v2 v3 183 183 5. finalize(self,matrix_element, cmdhistory, MG5options, outputflag) 184 184 6. modify_grouping(self, matrix_element) 185 7. make_model_cpp(self, export_dir)185 7. compile_model(self) 186 186 187 187 === List of class variable that need to be defined in the exporter: … … 228 228 return 229 229 230 def setup_cpp_standalone_dir(self, model) 230 def setup_cpp_standalone_dir(self, model): 231 231 return 232 232 … … 243 243 return False, matrix_element 244 244 245 def make_model_cpp(self, model): 246 return 247 248 }}} 249 250 245 def compile_model(self): 246 #compile the model to create a library 247 return 248 249 }}} 250 251