Functions
CurrentProcessingContext_t.cpp File Reference
#include "art/Persistency/Provenance/ModuleDescription.h"
#include "art/Utilities/CurrentProcessingFrame.h"
#include "cetlib_except/exception.h"
#include "fhiclcpp/ParameterSet.h"
#include <cassert>
#include <cstddef>
#include <iostream>
#include <string>

Go to the source code of this file.

Functions

void work ()
 
int main ()
 

Function Documentation

int main ( void  )

Definition at line 87 of file CurrentProcessingContext_t.cpp.

88 {
89  // int rc = 0;
90  // try {
91  // work();
92  //}
93  // catch (cet::exception& x) {
94  // std::cerr << "cet::exception caught\n";
95  // std::cerr << x.what() << '\n';
96  // rc = 1;
97  //}
98  // catch (std::exception& x) {
99  // std::cerr << "std::exception caught\n";
100  // std::cerr << x.what() << '\n';
101  // rc = 2;
102  //}
103  // catch (...) {
104  // std::cerr << "Unknown exception caught\n";
105  // rc = 3;
106  //}
107  // return rc;
108 }
void work ( )

Definition at line 80 of file CurrentProcessingContext_t.cpp.

81 {
82  // test_default_ctor();
83  // test_deactivate();
84 }