Line |
Branch |
Exec |
Source |
1 |
|
|
/*************************************** |
2 |
|
|
Auteur : Thibaut Oprinsen & Pierre Aubert |
3 |
|
|
Mail : pierre.aubert@lapp.in2p3.fr |
4 |
|
|
Licence : CeCILL-C |
5 |
|
|
****************************************/ |
6 |
|
|
|
7 |
|
|
#include "ProcessClassSort.h" |
8 |
|
|
|
9 |
|
|
///Sort the fillShort method of the ProcessClass |
10 |
|
|
/** @param processClass : ProcessClass to be processed |
11 |
|
|
* @param testShort : short to be processed |
12 |
|
|
* @return true on success, false otherwise |
13 |
|
|
*/ |
14 |
|
1 |
bool sortFillShort(ProcessClass &processClass, const short &testShort){ |
15 |
|
1 |
return processClass.fillShort(testShort); |
16 |
|
|
} |
17 |
|
|
|