#include <utility>
#include "DataFormats/GeometryVector/interface/GlobalPoint.h"
Go to the source code of this file.
Classes | |
class | MaterialAccountingStep |
Functions | |
MaterialAccountingStep | operator * (double y, const MaterialAccountingStep &x) |
MaterialAccountingStep | operator * (const MaterialAccountingStep &x, double y) |
MaterialAccountingStep | operator * (const MaterialAccountingStep &x, const MaterialAccountingStep &y) |
MaterialAccountingStep | operator+ (const MaterialAccountingStep &x, const MaterialAccountingStep &y) |
MaterialAccountingStep | operator- (const MaterialAccountingStep &x, const MaterialAccountingStep &y) |
MaterialAccountingStep | operator/ (const MaterialAccountingStep &x, double y) |
MaterialAccountingStep operator * | ( | double | y, | |
const MaterialAccountingStep & | x | |||
) | [inline] |
Definition at line 182 of file MaterialAccountingStep.h.
References cmsRelvalreportInput::step.
00182 { 00183 MaterialAccountingStep step(x); 00184 step *= y; 00185 return step; 00186 }
MaterialAccountingStep operator * | ( | const MaterialAccountingStep & | x, | |
double | y | |||
) | [inline] |
Definition at line 175 of file MaterialAccountingStep.h.
References cmsRelvalreportInput::step.
00175 { 00176 MaterialAccountingStep step(x); 00177 step *= y; 00178 return step; 00179 }
MaterialAccountingStep operator * | ( | const MaterialAccountingStep & | x, | |
const MaterialAccountingStep & | y | |||
) | [inline] |
Definition at line 168 of file MaterialAccountingStep.h.
References cmsRelvalreportInput::step.
00168 { 00169 MaterialAccountingStep step(x); 00170 step *= y; 00171 return step; 00172 }
MaterialAccountingStep operator+ | ( | const MaterialAccountingStep & | x, | |
const MaterialAccountingStep & | y | |||
) | [inline] |
Definition at line 154 of file MaterialAccountingStep.h.
References cmsRelvalreportInput::step.
00154 { 00155 MaterialAccountingStep step(x); 00156 step += y; 00157 return step; 00158 }
MaterialAccountingStep operator- | ( | const MaterialAccountingStep & | x, | |
const MaterialAccountingStep & | y | |||
) | [inline] |
Definition at line 161 of file MaterialAccountingStep.h.
References cmsRelvalreportInput::step.
00161 { 00162 MaterialAccountingStep step(x); 00163 step -= y; 00164 return step; 00165 }
MaterialAccountingStep operator/ | ( | const MaterialAccountingStep & | x, | |
double | y | |||
) | [inline] |
Definition at line 189 of file MaterialAccountingStep.h.
References cmsRelvalreportInput::step.
00189 { 00190 MaterialAccountingStep step(x); 00191 step /= y; 00192 return step; 00193 }