Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Job.cxx File Reference

#include <iostream>
#include <cstring>
#include <ctime>
#include <climits>
#include <list>
#include <string>
#include "TSystem.h"
#include "TProcessID.h"
#include "EventDataModel/EventHandle.h"
#include "EventDataModel/EventHeader.h"
#include "IoModules/ReadWriteModule.h"
#include "JobControl/Job.h"
#include "JobControl/CmdLine.h"
#include "JobControl/Exception.h"

Go to the source code of this file.

Functions

const char * tstamp ()


Function Documentation

const char* tstamp  ) 
 

Definition at line 24 of file Job.cxx.

Referenced by jobc::Job::Run().

00025 {
00026 //======================================================================
00027 // Provide a nicely formatted, current, time stamp string
00028 //======================================================================
00029   static char tbuff[32];
00030   time_t t;
00031   t = time(0);
00032   strcpy(tbuff, ctime(&t));
00033   tbuff[24] = '\0';
00034   return tbuff;
00035 }


Generated on Sat Oct 11 02:35:29 2008 for NOvA Offline by  doxygen 1.3.9.1