Changeset 241 for xssim/branches/tpiontek/src/simulator
- Timestamp:
- 04/11/12 16:30:38 (13 years ago)
- Location:
- xssim/branches/tpiontek/src/simulator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
xssim/branches/tpiontek/src/simulator/GridSchedulingSimulator.java
r159 r241 292 292 }; 293 293 294 File tarArchive = new File(outputDir, "results.tar");294 /*File tarArchive = new File(outputDir, "results.tar"); 295 295 296 296 File networkTopologyFile = (configurationOptions.networkTopologyFileName == null) ? null … … 302 302 } catch (IOException e) { 303 303 log.error("IOException occured while creating archive file", e); 304 } 305 } 304 }*/ } 306 305 307 306 public void runMultiuser(String rootDirPath, GridSchedulingSimulator gssim) { -
xssim/branches/tpiontek/src/simulator/stats/implementation/GSSimStatistics.java
r233 r241 326 326 if (resourceLoadStatsFile != null) { 327 327 Object txt = resourceUsage.serialize(serializer); 328 resourceLoadStatsFile.println(txt); 328 if( resType == ResourceType.DATA_CENTER) 329 resourceLoadStatsFile.println(txt); 329 330 } 330 331 } … … 340 341 if (energyStatsFile != null) { 341 342 Object txt = energyUsage.serialize(serializer); 342 energyStatsFile.println(txt); 343 if( resType == ResourceType.DATA_CENTER) 344 energyStatsFile.println(txt); 343 345 } 344 346 }
Note: See TracChangeset
for help on using the changeset viewer.