Introduction
This document describes C++ analysis framework for LCLS and how users can make use of its features. Psana design borrows ideas from multitude of other framworks such as pyana, myana, BaBar framework, etc. It's main principles are summarized here:
- support processing of both XTC and HDF5 data format
- user code should be independent of specific data format
- should be easy to use and extend for end users
- support re-use of the existing analysis code
- common simple configuration of user analysis code
This manual is accompanied by the Psana reference Manual which describes interfaces of the classes available in Psana.
Framework Architecture
The central part of the framework is a regular pre-built application (psana) which can dynamically load one or more user analysis modules which are written in C++. The core application is responsible for the following tasks:
- loading and initializing all user modules
- loading one of the input modules to read data from XTC or HDF5
- calling appropriate methods of user modules based on the data being processed
- providing access to data as set of C++ classes
- providing other services such as histogramming to user modules
Other important components of the Psana architecture:
- user module – instance of the C++ class which inherits pre-defined Module class and defines few special methods which are called by framework
- event – special object which transparently stores all event data
- environment – special object which stores non-event data such as configuration objects or EPICS data
Analysis Job Life Cycle
Psana analysis job goes through cycles of state changes such as initialization, configuration, event processing, etc. calling methods of the user modules at every such change. This model follows closely the production activities in LCLS on-line system. DAQ system defines many types of transitions in its data-taking activity, most interesting are here:
Configure
- provides configuration data for complete setupBeginRun
- start of data taking for one runBeginCalibCycle
- start of the new scan, some configuration data may change at his pointL1Accept
- this is regular event containing event data from all detectorsEndCalibCycle
- end of single scanEndRun
- end of data taking for one runUnconfigure
- stop of all activity
Typically there will be more than one run taken with the same configuration, so there may be more than one BeginRun/EndRun
transition for one Configure/Unconfigure
, but a data file from single run should contain only one BeginRun/EndRun
. Depending on a setup there could be one or more BeginCalibCycle/EndCalibCycle
transitions in single run.
For each of the above transitions psana will call corresponding method in user modules notifying them of the possible change in the configuration or just providing event data. Following method names are defined in the user modules:
- beginJob() – this method is called once per analysis job when first
Configure
transition happens. If there is more than oneConfigure
in single job (when processing multiple runs) this method is not called, use beginRun() to observe configuration changes in this case. This method can access all configuration data through environment object. - beginRun() – this method is called for every new
BeginRun
, so it will be called multiple times when processing multiple runs in the same job. This method can access all configuration data through environment object. - beginCalibCycle() – this method is called for every new
BeginCalibCycle
, so it will be called multiple times when processing multiple runs in the same job or when single run contains multiple scans. This method can access all configuration data through environment object. - event() – this method is called for every new
L1Accept
, it has access to event data through event object as well as configuration data through environment object. - endCalibCycle() – this method is called for every new
EndCalibCycle
, it has access to configuration data through environment object. - endRun() – this method is called for every new
EndRun
, it has access to configuration data through environment object. - endJob() – this method is called once at the end of analysis job, it has access to configuration data through environment object.
Typically psana will iterate through all transitions/events from the input files. User modules have a limited control over this event loop, module can request to skip particular event, stop iteration early or abort job using one of the methods described below.
User Modules
User module in psana is an instance of the C++ class which inherits from the Module
class (defined in file pasana/Module.h
) and implements several methods. These methods are already mentioned above, here is more formal description of each method:
void beginJob(Env& env)
Method called once at the beginning of the job. Environment object contains configuration data from the firstConfigure
transition. Default implementation of this method does not do anything.void beginRun(Env& env)
Method called at the beginning of every new run. Default implementation of this method does not do anything.void beginCalibCycle(Env& env)
Method called at the beginning of every new scan. Default implementation of this method does not do anything.void event(Event& evt, Env& env)
Method called for every regular event. Even data is accessible through =evt= argument. There is no default implementation for this method and user module must provide at least this method.void endCalibCycle(Env& env)
Method called at the end of every new scan, can be used to process scan-level statistics collected inevent()
. Default implementation of this method does not do anything.void endRun(Env& env)
Method called at the end of every run, can be used to process run-level statistics collected inevent()
. Default implementation of this method does not do anything.void endJob(Env& env)
Method called once at the end of analysis job, can be used to process job-level statistics collected inevent()
. Default implementation of this method does not do anything.
In addition to event()
method every module class must provide a constructor which takes string argument giving the name of the module. Additionally it has to provide a special factory function use to instantiate the modules from the shared libraries, there is special macro defined for definition of this factory function.
Here is the minimal example of the module class declaration with only the event()
method implemented and many non-essential details are skipped:
#include "psana/Module.h" namespace Package { class ExampleModule: public Module { public: // Constructor takes module name as a parameter ExampleModule(const std::string& name); // Implementation of event() from base class virtual void event(Event& evt, Env& env); }; } // namespace Package
Definition of the factory function and methods:
#include "Package/ExampleModule.h" #include "MsgLogger/MsgLogger.h" #include "PSEvt/EventId.h" // define factory function using namespace Package; PSANA_MODULE_FACTORY(ExampleModule) // Constructor ExampleModule::ExampleModule(const std::string& name) : Module(name) { } void ExampleModule::event(Event& evt, Env& env) { // get event ID shared_ptr<EventId> eventId = evt.get(); if (not eventId.get()) { MsgLog(name(), info, "event ID not found"); } else { MsgLog(name(), info, "event ID: " << *eventId); } }
This simple example already does something useful, it retrieves and prints event ID (copied from standard PrintEventId module). Actual modules will do more complex things but this is a simple example of obtaining something from event data.
Data Access in User Modules
As already mentioned above all event data is accessible to user module via Event
object, and all non-event data is accessible through Env
object. Previous example shows simple use case of extracting data from the event. This section give more detailed description of the Event
and Env
types and their methods.
When extracting data from event or environment it is necessary to specify at least the type of the data (EventId
in the above example). If there are multiple object of the same type in the event the additional identifying information must be provided – source address and/or additional string key.
Data Source Address
Many pieces of data in the event originate from devices or processes which are parts of the LCLS DAQ. Devices in DAQ system are identified their addresses, which are special C++ data types. There are three types of addresses defined by DAQ:
- DetInfo (class name
Pds::DetInfo
) – this is the most frequently used type and it defines all regular devices used in DAQ such as cameras, Acqiris, etc. Complete address specification includes 4 items:- Detector type, one of the
Pds::DetInfo::Detector
enum values. - Detector ID, a number, in case there is more than one detector of the same type in a system they will have different IDs.
- Device type, one of the
Pds::DetInfo::Device
enum values. - Device ID, a number, in case there is more than one device of the same type in a system they will have different IDs.
- Detector type, one of the
- BldInfo (class name
Pds::BldInfo
) – this address type is used for Beam Line Data sources, particular source is identified by thePds::BldInfo::Type
enum value. - ProcInfo (class name
Pds::ProcInfo
) – this address type is used rarely, and only for information produced by applications constituting DAQ. Sources of this type are identified by IP address of the host where application is running.
(If you look at the C++ code you'll notice that all above classes also include process ID, but it is not used by psana and can be set to 0 if needed.)
User modules should not need to use above C++ classes directly, instead psana provides facility that simplifies specification of the addresses and does not require exact addresses to be known.
Event Data
Event data can be